DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomGlobal Class / GuidToUID Method
A System.Guid object to construct the DICOM UID from



In This Topic
    GuidToUID Method
    In This Topic
    Construct a DICOM UID from Universally Unique Identifier (GUID) based on the method defined in ISO/IEC 9834-8 / ITU-T X.667
    Syntax
    'Declaration
     
    
    Public Shared Function GuidToUID( _
       ByVal guid As Guid _
    ) As String
    'Usage
     
    
    Dim guid As Guid
    Dim value As String
     
    value = DicomGlobal.GuidToUID(guid)
    public static string GuidToUID( 
       Guid guid
    )
    public:
    static String^ GuidToUID( 
       Guid guid
    ) 

    Parameters

    guid
    A System.Guid object to construct the DICOM UID from

    Return Value

    A DICOM UID based on the Guid object
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also