DicomObjects.NET.8.48 Documentation
DicomObjects.DicomWeb.WebClient Namespace / WorkItemWebClient Class / Retrieve Method
The Workitem UID for matching
Example

In This Topic
    Retrieve Method
    In This Topic
    This transaction retrieves a Workitem. It corresponds to the UPS DIMSE N-GET operation.
    Syntax
    'Declaration
     
    
    Public Function Retrieve( _
       ByVal WorkItemUID As System.String _
    ) As DicomDataSet
    public DicomDataSet Retrieve( 
       System.string WorkItemUID
    )

    Parameters

    WorkItemUID
    The Workitem UID for matching

    Return Value

    A DicomObjects.DicomDataSet object that represents the retreived Workitem (UPS) object
    Example
    WorkItemWebClient wwc = new WorkItemWebClient(BaseUri);
    var ds = wwc.Retrieve("1.2.3.4.5.6.7.8.9");
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also