'DeclarationPublic 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
'DeclarationPublic Shared Function AddRamLicense( _ ByVal token() As System.Byte _ ) As DicomLicense
public static DicomLicense AddRamLicense( System.byte[] token )
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
// you need to add a method to retrieve your token from our licence server byte[] token = // method_to_get_token() DicomLicense.AddRamLicense(token);