DicomObjects.NET.V8
DicomObjects Namespace / DicomAssociation Class / NEventReport Method

The requested SOP Class UID

The requested SOP InstanceUID

Event ID, as defined by the Class UID

Associated Data




In This Topic
    NEventReport Method
    In This Topic
    Send an N-EVENT-REPORT over an established DicomAssociation
    Syntax
    'Declaration
     
    Public Sub NEventReport( _
       ByVal SOPClassUID As String, _
       ByVal InstanceUID As String, _
       ByVal EventID As Integer, _
       ByVal DataSet As DicomDataSet _
    ) 
    'Usage
     
    Dim instance As DicomAssociation
    Dim SOPClassUID As String
    Dim InstanceUID As String
    Dim EventID As Integer
    Dim DataSet As DicomDataSet
     
    instance.NEventReport(SOPClassUID, InstanceUID, EventID, DataSet)
    public void NEventReport( 
       string SOPClassUID,
       string InstanceUID,
       int EventID,
       DicomDataSet DataSet
    )
    public:
    void NEventReport( 
       String^ SOPClassUID,
       String^ InstanceUID,
       int EventID,
       DicomDataSet^ DataSet
    ) 

    Parameters

    SOPClassUID

    The requested SOP Class UID

    InstanceUID

    The requested SOP InstanceUID

    EventID

    Event ID, as defined by the Class UID

    DataSet

    Associated Data

    Remarks

    Before using this method, it is important to ensure that the required SOP Class UID has been negotiated with the remote entity. In some cases such as when using Storage Commitment, reverse role SCU/SCP negotiation may also be necessary.

    The return status can be found in the LastStatus property of DicomAssociation object.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also