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

The query root

The identifier for the request

Specify if bulk data is required in the response







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

    Parameters

    Root

    The query root

    DataSet

    The identifier for the request

    NoBulkData

    Specify if bulk data is required in the response

    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: .NET CLR 4.8 or higher

    See Also