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

In This Topic
    RetrieveRenderedAsync Method
    In This Topic
    Async Retrieve Rendered images
    Syntax
    'Declaration
     
    
    <System.Runtime.CompilerServices.AsyncStateMachineAttribute(DicomObjects.DicomWeb.WebClient.WadoWebClient/d__12)> 
    Public Function RetrieveRenderedAsync( _ 
       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.Threading.Tasks.Task(Of Dictionary(Of HttpContentHeaders,Byte()))
    [System.Runtime.CompilerServices.AsyncStateMachine(DicomObjects.DicomWeb.WebClient.WadoWebClient/d__12)] 
    public System.Threading.Tasks.Task<Dictionary<HttpContentHeaders,byte[]>> RetrieveRenderedAsync( 
       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