DicomObjects.NET.8.48 Documentation
DicomObjects.DicomWeb Namespace / WadoWebClient Class / RetrieveRendered Method
The Requested StudyUID
The Requested series UID (may be null/absent)
The Requested instance UID (may be null/absent)






In This Topic
    RetrieveRendered Method
    In This Topic
    Retrieve Rendered images
    Syntax
    'Declaration
     
    
    Public Function RetrieveRendered( _
       ByVal StudyUID As System.String, _
       Optional ByVal SeriesUID As System.String, _
       Optional ByVal InstanceUID As System.String, _
       Optional ByVal Frames As System.Collections.Generic.IEnumerable(Of Integer) _
    ) As System.Collections.Generic.Dictionary(Of HttpContentHeaders,Byte())
    'Usage
     
    
    Dim instance As WadoWebClient
    Dim StudyUID As System.String
    Dim SeriesUID As System.String
    Dim InstanceUID As System.String
    Dim Frames As System.Collections.Generic.IEnumerable(Of Integer)
    Dim value As System.Collections.Generic.Dictionary(Of HttpContentHeaders,Byte())
     
    value = instance.RetrieveRendered(StudyUID, SeriesUID, InstanceUID, Frames)
    public System.Collections.Generic.Dictionary<HttpContentHeaders,byte[]> RetrieveRendered( 
       System.string StudyUID,
       System.string SeriesUID,
       System.string InstanceUID,
       System.Collections.Generic.IEnumerable<int> Frames
    )
    public function RetrieveRendered( 
        StudyUID: System.String;
        SeriesUID: System.String;
        InstanceUID: System.String;
        Frames: System.Collections.Generic.IEnumerable
    ): System.Collections.Generic.Dictionary; 
    public function RetrieveRendered( 
       StudyUID : System.String,
       SeriesUID : System.String,
       InstanceUID : System.String,
       Frames : System.Collections.Generic.IEnumerable
    ) : System.Collections.Generic.Dictionary;
    public: System.Collections.Generic.Dictionary<HttpContentHeaders*,byte[]>* RetrieveRendered( 
       System.string* StudyUID,
       System.string* SeriesUID,
       System.string* InstanceUID,
       System.Collections.Generic.IEnumerable<int>* Frames
    ) 
    public:
    System.Collections.Generic.Dictionary<HttpContentHeaders^,array<byte>>^ RetrieveRendered( 
       System.String^ StudyUID,
       System.String^ SeriesUID,
       System.String^ InstanceUID,
       System.Collections.Generic.IEnumerable<int>^ Frames
    ) 

    Parameters

    StudyUID
    The Requested StudyUID
    SeriesUID
    The Requested series UID (may be null/absent)
    InstanceUID
    The Requested instance UID (may be null/absent)
    Frames

    Return Value

    List of images as byte[] and their media types
    Remarks
    This method is experimental and incomplete as the DICOM specificaiton is ambiguous. There is currently no suport for rendering parameters
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also