USPS Standardization
StandardizationLogic Constructor(String,String)
Example 



KellermanSoftware.USPSStandardization Namespace > StandardizationLogic Class > StandardizationLogic Constructor : StandardizationLogic Constructor(String,String)
The user name from the receipt
The license from the receipt
Constructor for licensed mode
Syntax
'Declaration
 
Public Function New( _
   ByVal userName As String, _
   ByVal license As String _
)
'Usage
 
Dim userName As String
Dim license As String
 
Dim instance As New StandardizationLogic(userName, license)
public StandardizationLogic( 
   string userName,
   string license
)
public:
StandardizationLogic( 
   String^ userName,
   String^ license
)

Parameters

userName
The user name from the receipt
license
The license from the receipt
Example
//Trial Mode
StandardizationLogic standardizationLogic = new StandardizationLogic();
 
//License Mode
StandardizationLogic standardizationLogic2 = new StandardizationLogic("John Smith 10000", "asdf;ljkasdfk==");
'Trial Mode
Dim standardizationLogic As New StandardizationLogic()
 
'License Mode
Dim standardizationLogic2 As New StandardizationLogic("John Smith 10000", "asdf;ljkasdfk==")
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

StandardizationLogic Class
StandardizationLogic Members
Overload List