DicomObjects.NET.8.48 Documentation
DicomObjects.DicomWeb Namespace / StowWebClient Class / Store Method
The instances to send
The encoding to use (native/json/xml)
The transfer syntax to use to send the instances






In This Topic
    Store Method
    In This Topic
    Store a set of instances to the remote destination using STOW-RS
    Syntax
    'Declaration
     
    
    Public Function Store( _
       ByVal DataSets As DicomDataSetCollection, _
       ByVal Encoding As DicomDataEncoding, _
       ByVal TransferSyntax As System.String _
    ) As DicomDataSet
    'Usage
     
    
    Dim instance As StowWebClient
    Dim DataSets As DicomDataSetCollection
    Dim Encoding As DicomDataEncoding
    Dim TransferSyntax As System.String
    Dim value As DicomDataSet
     
    value = instance.Store(DataSets, Encoding, TransferSyntax)
    public function Store( 
       DataSets : DicomDataSetCollection,
       Encoding : DicomDataEncoding,
       TransferSyntax : System.String
    ) : DicomDataSet;

    Parameters

    DataSets
    The instances to send
    Encoding
    The encoding to use (native/json/xml)
    TransferSyntax
    The transfer syntax to use to send the instances

    Return Value

    A Dataset containing the response, as detailed in DICOM Part 18
    Remarks
    If TransferSyntax is null, then the instances are sent using the transfer syntax in which they are currently held
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also