IHttpTelemetryConsumer.OnConnectionClosed Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.