Interface IRequestTelemetryOperationHolder
Represents the operation item that holds telemetry which is tracked on end request. Operation can be associated with either WEB or SQL dependencies. Specialized interface to encapsulates information about a web request operation handled by the application.
Inherited Members
Namespace: DNVGL.One.Telemetry.Core
Assembly: DNVGL.One.Telemetry.Core.dll
Syntax
public interface IRequestTelemetryOperationHolder : ITelemetryOperationHolder
Properties
View SourceResponseCode
Gets or sets response code returned by the application after handling the request.
Declaration
string ResponseCode { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Source
Gets or sets the source for the request telemetry object. This often is a hashed instrumentation key identifying the caller.
Declaration
string Source { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Url
Gets or sets request url (optional).
Declaration
Uri Url { get; set; }
Property Value
| Type | Description |
|---|---|
| Uri |