DicomObjects.NET.V8
DicomObjects Namespace / DicomQuery Class / Get Method / Get(DicomDataSet) Method

DicomDataSet containing the search criteria




In This Topic
    Get(DicomDataSet) Method
    In This Topic
    Perform a C-GET as SCU with matching criteria
    Syntax
    'Declaration
     
    Public Overloads Function Get( _
       ByVal Request As DicomDataSet _
    ) As DicomDataSetCollection
    'Usage
     
    Dim instance As DicomQuery
    Dim Request As DicomDataSet
    Dim value As DicomDataSetCollection
     
    value = instance.Get(Request)

    Parameters

    Request

    DicomDataSet containing the search criteria

    Return Value

    Remarks

    This method is intended for advanced users, requiring more control over the query DataSet than can be achieved using the Query object's standard properties, and methods. Note that the Level value (Attribute 0008, 0052), must be included in the DataSet.

    The returned value is an object of type DicomDataSetCollection, containing one DicomImage for each successful match. An unsuccessful retrieval produces no error, but the Count property of the returned DicomImages objects will be zero.

    Note that many servers do not support the C-GET protocol required for this method, requiring instead C-MOVE. In this case, use the Move method instead.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also