public sealed class StatusMessage : IMessage<StatusMessage>, IEquatable<StatusMessage>, IDeepCloneable<StatusMessage>, IBufferMessage, IMessage
Represents a contextual status message.
The message can indicate an error or informational status, and refer to
specific parts of the containing object.
For example, the Breakpoint.status
field can indicate an error referring
to the BREAKPOINT_SOURCE_LOCATION
with the message Location not found
.
Implements
IMessage<StatusMessage>, IEquatable<StatusMessage>, IDeepCloneable<StatusMessage>, IBufferMessage, IMessageNamespace
Google.Cloud.Debugger.V2Assembly
Google.Cloud.Debugger.V2.dll
Constructors
StatusMessage()
public StatusMessage()
StatusMessage(StatusMessage)
public StatusMessage(StatusMessage other)
Parameter | |
---|---|
Name | Description |
other | StatusMessage |
Properties
Description
public FormatMessage Description { get; set; }
Status message text.
Property Value | |
---|---|
Type | Description |
FormatMessage |
IsError
public bool IsError { get; set; }
Distinguishes errors from informational messages.
Property Value | |
---|---|
Type | Description |
Boolean |
RefersTo
public StatusMessage.Types.Reference RefersTo { get; set; }
Reference to which the message applies.
Property Value | |
---|---|
Type | Description |
StatusMessage.Types.Reference |