Table of Contents

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 int

the timeout in ms that was exceeded

attempt int

the number of times this association request has timed out so far

maximumNumberOfAttempts int

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

public int Attempt { get; }

Property Value

int

MaximumNumberOfAttempts

Gets the maximum number of times this association request is allowed to time out before giving up

public int MaximumNumberOfAttempts { get; }

Property Value

int

TimeoutInMs

Gets the timeout in ms that was exceeded

public int TimeoutInMs { get; }

Property Value

int