Share via


IHttpTelemetryConsumer.OnRequestStop Method

Definition

Overloads

OnRequestStop(DateTime)

Called after an HTTP request.

OnRequestStop(DateTime, Int32)

Called after an HTTP request.

OnRequestStop(DateTime)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called after an HTTP request.

public virtual void OnRequestStop(DateTime timestamp);
abstract member OnRequestStop : DateTime -> unit
override this.OnRequestStop : DateTime -> unit
Public Overridable Sub OnRequestStop (timestamp As DateTime)

Parameters

timestamp
DateTime

Timestamp when the event was fired.

Applies to

OnRequestStop(DateTime, Int32)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called after an HTTP request.

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

Parameters

timestamp
DateTime

Timestamp when the event was fired.

statusCode
Int32

The status code returned by the server. -1 if no response was received.

Applies to