ProvPrimer.productActivation (String, Boolean) Method
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.
Parameters
- serialNumber
- string
The serial Number of the Provider's Service
- analysis
- bool
Return Value
Dictionary<string, string>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.