DicomObjects.NET.V8
DicomObjects Namespace / DicomGlobal Class / GetRegString Method / GetRegString(String) Method

The name of the registry key.




In This Topic
    GetRegString(String) Method
    In This Topic
    Returns the value of a cached key
    Syntax
    'Declaration
     
    Public Overloads Shared Function GetRegString( _
       ByVal Name As String _
    ) As String
    'Usage
     
    Dim Name As String
    Dim value As String
     
    value = DicomGlobal.GetRegString(Name)
    public static string GetRegString( 
       string Name
    )
    public:
    static String^ GetRegString( 
       String^ Name
    ) 

    Parameters

    Name

    The name of the registry key.

    Return Value

    string
    Remarks
    This method returns the registry key values from a internal look up table. If Name does not exist in that table, it will return an empty string "".

    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

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also