'DeclarationPublic Overloads Shared Function GetRegString( _ ByVal Name As System.String _ ) As System.String
public static System.string GetRegString( System.string Name )
Parameters
- Name
The name of the registry key.
Return Value
string
The name of the registry key.
'DeclarationPublic Overloads Shared Function GetRegString( _ ByVal Name As System.String _ ) As System.String
public static System.string GetRegString( System.string Name )
The name of the registry key.
As DicomGlobal does not look in to registry any more (as did in COM version) for key values, instead, an internal look up table is used to provide all those options used by DicomObjects, like logging, Importing/Exporting external files, Compression/Decompression, Supported SOP Class, Supported Transfer Syntax.
For a current list of values, se the wiki: http://www.medicalconnections.co.uk/kb/Registry_Values
// Examples var MpegLiblocation = DicomGlobal.GetRegString("MpegLibraryLocation"); var TS = DicomGlobal.GetRegString("TransferSyntax/"); var changeLossy = DicomGlobal.GetRegString("ChangeLossyUIDs");