DicomObjects.NET.8.48 Documentation
DicomObjects.DicomWeb Namespace / WadoWebClient Class / AppendBulkData Method
The instances to update






In This Topic
    AppendBulkData Method
    In This Topic
    Fetch all bulk data for the set of images and fold into the instances, replacing DicomObjects.DicomAttribute.BulkDataUri references using the data retrieved
    Syntax
    'Declaration
     
    
    Public Sub AppendBulkData( _
       ByVal DataSets As DicomDataSetCollection _
    ) 
    'Usage
     
    
    Dim instance As WadoWebClient
    Dim DataSets As DicomDataSetCollection
     
    instance.AppendBulkData(DataSets)
    public void AppendBulkData( 
       DicomDataSetCollection DataSets
    )
    public procedure AppendBulkData( 
        DataSets: DicomDataSetCollection
    ); 
    public function AppendBulkData( 
       DataSets : DicomDataSetCollection
    );
    public: void AppendBulkData( 
       DicomDataSetCollection* DataSets
    ) 
    public:
    void AppendBulkData( 
       DicomDataSetCollection^ DataSets
    ) 

    Parameters

    DataSets
    The instances to update
    Remarks

    The "level" of the request is determined from the instances - being their highest common level (study/series/instance)

    This can be the most efficient mean to get bulk data - getting all on one connection request, but there is no way to know if the study we have is complete, so we might be waste if bulk data from other instances in the study/series are retrievd

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also