Class AssociationRejectedEventArgs
Container class for arguments associated with the AssociationRejected event.
Inheritance
System.Object
System.EventArgs
AssociationRejectedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FellowOakDicom.Network.Client.EventArguments
Assembly: fo-dicom.core.dll
Syntax
public class AssociationRejectedEventArgs : EventArgs
Constructors
AssociationRejectedEventArgs(DicomRejectResult, DicomRejectSource, DicomRejectReason)
Initializes an instance of the AssociationRejectedEventArgs class.
Declaration
public AssociationRejectedEventArgs(DicomRejectResult result, DicomRejectSource source, DicomRejectReason reason)
Parameters
Type | Name | Description |
---|---|---|
DicomRejectResult | result | Association rejection result. |
DicomRejectSource | source | Source of association rejection. |
DicomRejectReason | reason | Reason for association rejection. |
Properties
Reason
Gets the reason for the association rejection.
Declaration
public DicomRejectReason Reason { get; }
Property Value
Type | Description |
---|---|
DicomRejectReason |
Result
Gets the association rejection result.
Declaration
public DicomRejectResult Result { get; }
Property Value
Type | Description |
---|---|
DicomRejectResult |
Source
Gets the source of the association rejection.
Declaration
public DicomRejectSource Source { get; }
Property Value
Type | Description |
---|---|
DicomRejectSource |