Re-registers the program instance in the case that this program has changed ownership or location.

Namespace:  Linxter.SDK
Assembly:  Linxter.SDK (in Linxter.SDK.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

C#
string ReIssueProgramInstance()
Visual Basic (Declaration)
Function ReIssueProgramInstance As String

Return Value

The activation Id. This string will be needed to approve the instance with the Linxter Web Manager.

Examples

CopyC#
public void ReIssueProgramInstanceExample()
{
    // Set up SDK objects
    ILinxterMessaging messaging = new LinxterSDK();
    ILinxterRegistration registration = messaging as ILinxterRegistration;

    // Re-register this instance
    registration.ReIssueProgramInstance();
}
CopyVB.NET
Sub ReIssueProgramInstanceExample()
    ' Set up SDK objects
    Dim messaging As New LinxterSDK()
    Dim registration = CType(messaging, ILinxterRegistration)

    ' Re-register this instance
    registration.ReIssueProgramInstance()
End Sub

See Also