Class AssociationRequestTimedOutEventArgs
Inheritance
System.Object
System.EventArgs
AssociationRequestTimedOutEventArgs
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 AssociationRequestTimedOutEventArgs : EventArgs
Constructors
AssociationRequestTimedOutEventArgs(Int32, Int32, Int32)
Initializes an instance of AssociationRequestTimedOutEventArgs
Declaration
public AssociationRequestTimedOutEventArgs(int timeoutInMs, int attempt, int maximumNumberOfAttempts)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | timeoutInMs | the timeout in ms that was exceeded |
System.Int32 | attempt | the number of times this association request has timed out so far |
System.Int32 | maximumNumberOfAttempts | the maximum number of times this association request is allowed to time out before giving up |
Properties
Attempt
Gets the number of times this association request has timed out so far
Declaration
public int Attempt { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
MaximumNumberOfAttempts
Gets the maximum number of times this association request is allowed to time out before giving up
Declaration
public int MaximumNumberOfAttempts { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TimeoutInMs
Gets the timeout in ms that was exceeded
Declaration
public int TimeoutInMs { get; }
Property Value
Type | Description |
---|---|
System.Int32 |