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



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)

    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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also