Class AssociationRequestTimedOutEventArgs
- Namespace
- FellowOakDicom.Network.Client.EventArguments
- Assembly
- fo-dicom.core.dll
public class AssociationRequestTimedOutEventArgs : EventArgs
- Inheritance
-
AssociationRequestTimedOutEventArgs
- Inherited Members
- Extension Methods
Constructors
AssociationRequestTimedOutEventArgs(int, int, int)
Initializes an instance of AssociationRequestTimedOutEventArgs
public AssociationRequestTimedOutEventArgs(int timeoutInMs, int attempt, int maximumNumberOfAttempts)
Parameters
timeoutInMs
intthe timeout in ms that was exceeded
attempt
intthe number of times this association request has timed out so far
maximumNumberOfAttempts
intthe 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
public int Attempt { get; }
Property Value
MaximumNumberOfAttempts
Gets the maximum number of times this association request is allowed to time out before giving up
public int MaximumNumberOfAttempts { get; }
Property Value
TimeoutInMs
Gets the timeout in ms that was exceeded
public int TimeoutInMs { get; }