DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / MergeBulkData Method
A method which, when passed a URI, returns the associated byte array
If true, then an exception is thrown if any items cannot be found






    MergeBulkData Method
    Load Bulk data for all attributes, getting data from a method, based on the URI
    Syntax
    'Declaration
     
    
    Public Sub MergeBulkData( _
       ByVal GetData As System.Func(Of Uri,String,HttpContent), _
       ByVal RequireBulkData As System.Boolean _
    ) 
     
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim GetData As System.Func(Of Uri,String,HttpContent)
    Dim RequireBulkData As System.Boolean
     
    instance.MergeBulkData(GetData, RequireBulkData)

    Parameters

    GetData
    A method which, when passed a URI, returns the associated byte array
    RequireBulkData
    If true, then an exception is thrown if any items cannot be found
    Remarks
    This method is used to re-assemble data from STOW-RS etc., where some bulk data items have been sent as parts of a multipart message, and the GetData delegate points to a routine which finds the appropriate part of the message.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also