ProvPrimer.productActivation (String, Boolean) Method

You can use this method as many times as you want to get updated data about the user and the company data (start date, expiry date, remaining invoices)
Public Function productActivation( _ 
ByVal serialNumber As String, _ 
ByVal analysis As Boolean
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> productActivation( 
string serialNumber
bool analysis 
)
This language is not supported or no code example is available.

Parameters

serialNumber
string

The serial Number of the Provider's Service

analysis
bool

Return Value

Dictionary<string, string>
Example
 
 var pri = new ProvPrimer("primerUser", "primerParssowrd", false);
 Dictionary<string, string> prodDet = pri.productActivation("<productSerialNumber>", true); // activate the product And get product details.
 					
This language is not supported or no code example is available.
 Dim pri As ProvPrimer = New ProvPrimer("primerUser", "primerParssowrd", False)
 Dim prodDet As Dictionary(Of String, String) = pri.productActivation("<productSerialNumber>", True) 'activate the product and get product details.
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition