Share via


IHttpTelemetryConsumer.OnResponseHeadersStop Method

Definition

Overloads

Name Description
OnResponseHeadersStop(DateTime)

Called after reading all response headers.

OnResponseHeadersStop(DateTime, Int32)

Called after reading all response headers.

OnResponseHeadersStop(DateTime)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called after reading all response headers.

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

Parameters

timestamp
DateTime

Timestamp when the event was fired.

Applies to

OnResponseHeadersStop(DateTime, Int32)

Source:
IHttpTelemetryConsumer.cs
Source:
IHttpTelemetryConsumer.cs

Called after reading all response headers.

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

Parameters

timestamp
DateTime

Timestamp when the event was fired.

statusCode
Int32

The status code returned by the server.

Applies to