Google Cloud Error Reporting v1beta1 API - Class ErrorContext (3.0.0-beta04)

public sealed class ErrorContext : IMessage<ErrorContext>, IEquatable<ErrorContext>, IDeepCloneable<ErrorContext>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Error Reporting v1beta1 API class ErrorContext.

A description of the context in which an error occurred. This data should be provided by the application when reporting an error, unless the error report has been generated automatically from Google App Engine logs.

Inheritance

object > ErrorContext

Namespace

Google.Cloud.ErrorReporting.V1Beta1

Assembly

Google.Cloud.ErrorReporting.V1Beta1.dll

Constructors

ErrorContext()

public ErrorContext()

ErrorContext(ErrorContext)

public ErrorContext(ErrorContext other)
Parameter
NameDescription
otherErrorContext

Properties

HttpRequest

public HttpRequestContext HttpRequest { get; set; }

The HTTP request which was processed when the error was triggered.

Property Value
TypeDescription
HttpRequestContext

ReportLocation

public SourceLocation ReportLocation { get; set; }

The location in the source code where the decision was made to report the error, usually the place where it was logged. For a logged exception this would be the source line where the exception is logged, usually close to the place where it was caught.

Property Value
TypeDescription
SourceLocation

User

public string User { get; set; }

The user who caused or was affected by the crash. This can be a user ID, an email address, or an arbitrary token that uniquely identifies the user. When sending an error report, leave this field empty if the user was not logged in. In this case the Error Reporting system will use other data, such as remote IP address, to distinguish affected users. See affected_users_count in ErrorGroupStats.

Property Value
TypeDescription
string