DicomObjects.NET8 Documentation
DicomObjects.DicomWeb Namespace / IWorkItemWebClient Interface / Create Method
Workitem encoded in the media type specified in the Content-Type header field. The payload shall contain all data elements to be stored.
The encoding to use (native/json/xml)
The transfer syntax used to encode and send the WorkItem



In This Topic
    Create Method (IWorkItemWebClient)
    In This Topic
    Creates a Workitem on the target Worklist. It corresponds to the UPS DIMSE N-CREATE operation.
    Syntax
    'Declaration
     
    
    Function Create( _
       ByVal WorkItem As DicomDataSet, _
       ByVal Encoding As DicomDataEncoding, _
       Optional ByVal TransferSyntax As String _
    ) As HttpResponseMessage
    'Usage
     
    
    Dim instance As IWorkItemWebClient
    Dim WorkItem As DicomDataSet
    Dim Encoding As DicomDataEncoding
    Dim TransferSyntax As String
    Dim value As HttpResponseMessage
     
    value = instance.Create(WorkItem, Encoding, TransferSyntax)

    Parameters

    WorkItem
    Workitem encoded in the media type specified in the Content-Type header field. The payload shall contain all data elements to be stored.
    Encoding
    The encoding to use (native/json/xml)
    TransferSyntax
    The transfer syntax used to encode and send the WorkItem

    Return Value

    HttpResponseMessage
    Remarks
    If TransferSyntax is null, then the instances are sent using the transfer syntax in which they are currently held
    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