DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomAssociation Class / Get Method / Get(QueryRoot,DicomDataSet) Method

The query root

The identifier for the request




In This Topic
    Get(QueryRoot,DicomDataSet) Method
    In This Topic
    Sends a C-GET request
    Syntax
    'Declaration
     
    
    Public Overloads Sub Get( _
       ByVal Root As QueryRoot, _
       ByVal DataSet As DicomDataSet _
    ) 
    'Usage
     
    
    Dim instance As DicomAssociation
    Dim Root As QueryRoot
    Dim DataSet As DicomDataSet
     
    instance.Get(Root, DataSet)
    public void Get( 
       QueryRoot Root,
       DicomDataSet DataSet
    )
    public:
    void Get( 
       QueryRoot Root,
       DicomDataSet^ DataSet
    ) 

    Parameters

    Root

    The query root

    DataSet

    The identifier for the request

    Remarks

    The images to be retrieved are defined by the DataSet parameter.

    Note that the QueryLevel value (0008,0052), must be included in the data set, but the dataset parameter MUST NOT contain any group 0x0000 elements (the group 0x0000 contains elements describing operation and some of the fields like MessageID, etc.)

    Once the operation has completed, the images retrieved may be found in the ReturnedInstances collection.

    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