DicomObjects.NET8 Documentation
DicomObjects.DicomWeb Namespace / IWorkItemWebClient Interface / RequestCancel Method
The WorkItem UID to request cancellation
Payload, if present, may describe the reason for requesting the cancellation of the WorkItem.
The encoding to use (native/json/xml)
The transfer syntax used to encode and send the WorkItem



In This Topic
    RequestCancel Method (IWorkItemWebClient)
    In This Topic
    This transaction allows a user agent that does not own a Workitem to request that it be canceled. It corresponds to the UPS DIMSE N-ACTION operation "Request UPS Cancel". To cancel a Workitem that the user agent owns, i.e., that is in the IN PROGRESS state, the user agent uses the transaction See part 4 Table CC.2.2-1. Request UPS Cancel 0 Action Information for more details
    Syntax
    'Declaration
     
    
    Function RequestCancel( _
       ByVal WorkItemUID As String, _
       Optional ByVal ReasonForCancellation As DicomDataSet, _
       Optional ByVal Encoding As DicomDataEncoding, _
       Optional ByVal TransferSyntax As String _
    ) As HttpResponseMessage
    'Usage
     
    
    Dim instance As IWorkItemWebClient
    Dim WorkItemUID As String
    Dim ReasonForCancellation As DicomDataSet
    Dim Encoding As DicomDataEncoding
    Dim TransferSyntax As String
    Dim value As HttpResponseMessage
     
    value = instance.RequestCancel(WorkItemUID, ReasonForCancellation, Encoding, TransferSyntax)

    Parameters

    WorkItemUID
    The WorkItem UID to request cancellation
    ReasonForCancellation
    Payload, if present, may describe the reason for requesting the cancellation of the WorkItem.
    Encoding
    The encoding to use (native/json/xml)
    TransferSyntax
    The transfer syntax used to encode and send the WorkItem

    Return Value

    HttpResponseMessage
    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