Dynamicweb 8 Documentation
Create Method (Shipping)
Example 

The shipping ID.
Returns the shipping with specified ID.
Syntax
'Declaration
 
Public Shared Function Create( _ 
   ByVal ShippingID As String _ 
) As Shipping
public static Shipping Create( 
   string ShippingID 
)

Parameters

ShippingID
The shipping ID.
Example
private static String ReturnNameInsteadOfId(String id) 
{
    Shipping s = Shipping.Create(id);

    return s.Name;
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Shipping Class
Shipping Members

Send Feedback