The GetRegIDTran method
gets RegIDTran from the account.
C# |
public GetRegIDTranRes
GetRegIDTran (string ActivationKey) |
XML |
<?xml
version="1.0" encoding="utf-8"?> <soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetRegIDTran
xmlns="http://tempuri.org/"> <ActivationKey>string</ActivationKey> </GetRegIDTran> </soap:Body> </soap:Envelope> |
ActivationKey
The Activation Key to access the
account.
C# |
public
struct DeactivateLicenseRes { public int
ErrorCode; public string
ErrorMessage; public string RegIDTran; } |
XML |
<?xml
version="1.0" encoding="utf-8"?> <soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetRegIDTranResponse
xmlns="http://tempuri.org/"> <GetRegIDTranResult> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> <RegIDTran>string</RegIDTran> </GetRegIDTranResult> </GetRegIDTranResponse> </soap:Body> </soap:Envelope> |
ErrorCode
Returns 0 if success; otherwise,
see the Error Code.
ErrorMessage
Returns error message if the
ErrorCode is not 0.
RegIDTran
Returns the Registration ID to be used with the method
TransferLicense of the KeyCheck Class Library to deactivate the license. If RegIDTran
is “”, the account is not yet activated.