DicomObjects.NET.V8
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



In This Topic
    MergeBulkData Method
    In This Topic
    Load Bulk data for all attributes, getting data from a method, based on the URI
    Syntax
    'Declaration
     
    Public Sub MergeBulkData( _
       ByVal GetData As Func(Of Uri,String,HttpContent), _
       ByVal RequireBulkData As Boolean _
    ) 
    'Usage
     
    Dim instance As DicomDataSet
    Dim GetData As Func(Of Uri,String,HttpContent)
    Dim RequireBulkData As Boolean
     
    instance.MergeBulkData(GetData, RequireBulkData)
    public void MergeBulkData( 
       Func<Uri,string,HttpContent> GetData,
       bool RequireBulkData
    )
    public:
    void MergeBulkData( 
       Func<Uri^,String^,HttpContent^>^ GetData,
       bool 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.0 or higher

    See Also