DicomObjects.NET.V8
DicomObjects Namespace / DicomAssociation Class / Find Method / Find(QueryRoot,DicomDataSet) Method

The query root

The DataSet parameter defines the C-FIND searching criteria.




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

    Parameters

    Root

    The query root

    DataSet

    The DataSet parameter defines the C-FIND searching criteria.

    Remarks

    The query to be performed is defined by the DataSet parameter, and this method is functionally equivalent to the Find method of the DicomQuery object.

    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 result may be found in the ReturnedIdentifiers Collection.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also