DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomLicense Class / AddRamLicense Method
The license to add
Example

In This Topic
    AddRamLicense Method
    In This Topic
    Add a RAM License contained in the byte array
    Syntax
    'Declaration
     
    
    Public Shared Function AddRamLicense( _
       ByVal token() As System.Byte _
    ) As DicomLicense
    public static DicomLicense AddRamLicense( 
       System.byte[] token
    )

    Parameters

    token
    The license to add

    Return Value

    The resulting DicomLicense object
    Remarks

    This method is only available in special builds of DicomObjects which include the temporary licensing facility

    The type and valid date/time range of the license are defined within the encoded byte array

    Example
    // you need to add a method to retrieve your token from our licence server
    byte[] token = // method_to_get_token()
    DicomLicense.AddRamLicense(token);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also