DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomAssociation Class / Move Method / Move(QueryRoot,String,DicomDataSet) Method

The query root

The destination AE Title

The identifier for the C_MOVE request







In This Topic
    Move(QueryRoot,String,DicomDataSet) Method
    In This Topic
    Sends a C-MOVE request
    Syntax
    'Declaration
     
    
    Public Overloads Sub Move( _
       ByVal Root As QueryRoot, _
       ByVal Destination As System.String, _
       ByVal DataSet As DicomDataSet _
    ) 
    'Usage
     
    
    Dim instance As DicomAssociation
    Dim Root As QueryRoot
    Dim Destination As System.String
    Dim DataSet As DicomDataSet
     
    instance.Move(Root, Destination, DataSet)
    public void Move( 
       QueryRoot Root,
       System.string Destination,
       DicomDataSet DataSet
    )
    public procedure Move( 
        Root: QueryRoot;
        Destination: System.String;
        DataSet: DicomDataSet
    ); 
    public function Move( 
       Root : QueryRoot,
       Destination : System.String,
       DataSet : DicomDataSet
    );
    public: void Move( 
       QueryRoot Root,
       System.string* Destination,
       DicomDataSet* DataSet
    ) 
    public:
    void Move( 
       QueryRoot Root,
       System.String^ Destination,
       DicomDataSet^ DataSet
    ) 

    Parameters

    Root

    The query root

    Destination

    The destination AE Title

    DataSet

    The identifier for the C_MOVE request

    Remarks

    The images to be moved 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 result codes may be found in the Status property.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also