Show / Hide Table of Contents

Class DebugInfo

Describes additional debugging info.

Inheritance
System.Object
DebugInfo
Implements
IMessage<DebugInfo>
IMessage
System.IEquatable<DebugInfo>
IDeepCloneable<DebugInfo>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Rpc
Assembly: Google.Api.CommonProtos.dll
Syntax
public sealed class DebugInfo : IMessage<DebugInfo>, IMessage, IEquatable<DebugInfo>, IDeepCloneable<DebugInfo>

Constructors

DebugInfo()

Declaration
public DebugInfo()

DebugInfo(DebugInfo)

Declaration
public DebugInfo(DebugInfo other)
Parameters
Type Name Description
DebugInfo other

Fields

DetailFieldNumber

Field number for the "detail" field.

Declaration
public const int DetailFieldNumber = 2
Field Value
Type Description
System.Int32

StackEntriesFieldNumber

Field number for the "stack_entries" field.

Declaration
public const int StackEntriesFieldNumber = 1
Field Value
Type Description
System.Int32

Properties

Descriptor

Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
Type Description
MessageDescriptor

Detail

Additional debugging information provided by the server.

Declaration
public string Detail { get; set; }
Property Value
Type Description
System.String

Parser

Declaration
public static MessageParser<DebugInfo> Parser { get; }
Property Value
Type Description
MessageParser<DebugInfo>

StackEntries

The stack trace entries indicating where the error occurred.

Declaration
public RepeatedField<string> StackEntries { get; }
Property Value
Type Description
RepeatedField<System.String>

Methods

CalculateSize()

Declaration
public int CalculateSize()
Returns
Type Description
System.Int32
Implements
IMessage.CalculateSize()

Clone()

Declaration
public DebugInfo Clone()
Returns
Type Description
DebugInfo
Implements
IDeepCloneable<T>.Clone()

Equals(DebugInfo)

Declaration
public bool Equals(DebugInfo other)
Parameters
Type Name Description
DebugInfo other
Returns
Type Description
System.Boolean
Implements
System.IEquatable<T>.Equals(T)

Equals(Object)

Declaration
public override bool Equals(object other)
Parameters
Type Name Description
System.Object other
Returns
Type Description
System.Boolean
Overrides
System.Object.Equals(System.Object)

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32
Overrides
System.Object.GetHashCode()

MergeFrom(CodedInputStream)

Declaration
public void MergeFrom(CodedInputStream input)
Parameters
Type Name Description
CodedInputStream input
Implements
IMessage.MergeFrom(CodedInputStream)

MergeFrom(DebugInfo)

Declaration
public void MergeFrom(DebugInfo other)
Parameters
Type Name Description
DebugInfo other
Implements
IMessage<T>.MergeFrom(T)

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

WriteTo(CodedOutputStream)

Declaration
public void WriteTo(CodedOutputStream output)
Parameters
Type Name Description
CodedOutputStream output
Implements
IMessage.WriteTo(CodedOutputStream)

Explicit Interface Implementations

IMessage.Descriptor

Declaration
MessageDescriptor IMessage.Descriptor { get; }
Returns
Type Description
MessageDescriptor
Implements
IMessage.Descriptor
Back to top