DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomAttribute.DelayedDataRoutine Delegate
The dataset the bid is realted to






In This Topic
    DicomAttribute.DelayedDataRoutine Delegate
    In This Topic
    Delegate to fetch binary data for the bid
    Syntax
    'Declaration
     
    
    Public Delegate Function DicomAttribute.DelayedDataRoutine( _
       ByVal ds As DicomDataSet _
    ) As System.Byte()
    'Usage
     
    
    Dim instance As New DicomAttribute.DelayedDataRoutine(AddressOf HandlerMethod)
    public delegate System.byte[] DicomAttribute.DelayedDataRoutine( 
       DicomDataSet ds
    )
    public delegate DicomAttribute.DelayedDataRoutine( 
        ds: DicomDataSet
    );
    public delegate DicomAttribute.DelayedDataRoutine( 
       ds : DicomDataSet
    ) : System.byte[]
    public: __gc __delegate System.byte[]* DicomAttribute.DelayedDataRoutine( 
       DicomDataSet* ds
    )
    public delegate System.array<byte>^ DicomAttribute.DelayedDataRoutine( 
       DicomDataSet^ ds
    )

    Parameters

    ds
    The dataset the bid is realted to

    Return Value

    Binary data as byte[]
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also