Share via


IHttpTelemetryConsumer.OnConnectionClosed Method

Definition

Overloads

Name Description
OnConnectionClosed(DateTime, Int32, Int32)

Called when a new HTTP connection is closed.

OnConnectionClosed(DateTime, Int32, Int32, Int64)

Called when a new HTTP connection is closed.

OnConnectionClosed(DateTime, Int32, Int32)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called when a new HTTP connection is closed.

public virtual void OnConnectionClosed(DateTime timestamp, int versionMajor, int versionMinor);
abstract member OnConnectionClosed : DateTime * int * int -> unit
override this.OnConnectionClosed : DateTime * int * int -> unit
Public Overridable Sub OnConnectionClosed (timestamp As DateTime, versionMajor As Integer, versionMinor As Integer)

Parameters

timestamp
DateTime

Timestamp when the event was fired.

versionMajor
Int32

Major component of the connection's HTTP version.

versionMinor
Int32

Minor component of the connection's HTTP version.

Applies to

OnConnectionClosed(DateTime, Int32, Int32, Int64)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called when a new HTTP connection is closed.

public virtual void OnConnectionClosed(DateTime timestamp, int versionMajor, int versionMinor, long connectionId);
abstract member OnConnectionClosed : DateTime * int * int * int64 -> unit
override this.OnConnectionClosed : DateTime * int * int * int64 -> unit
Public Overridable Sub OnConnectionClosed (timestamp As DateTime, versionMajor As Integer, versionMinor As Integer, connectionId As Long)

Parameters

timestamp
DateTime

Timestamp when the event was fired.

versionMajor
Int32

Major component of the connection's HTTP version.

versionMinor
Int32

Minor component of the connection's HTTP version.

connectionId
Int64

ID of the connection that was closed.

Applies to