Show / Hide Table of Contents

Class FormatMessage

Represents a message with parameters.

Inheritance
object
FormatMessage
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudDebugger.v2.Data
Assembly: Google.Apis.CloudDebugger.v2.dll
Syntax
public class FormatMessage : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Format

Format template for the message. The format uses placeholders $0, $1, etc. to reference parameters. $$ can be used to denote the $ character. Examples: * Failed to load '$0' which helps debug $1 the first time it is loaded. Again, $0 is very important. * Please pay $$10 to use $0 instead of $1.

Declaration
[JsonProperty("format")]
public virtual string Format { get; set; }
Property Value
Type Description
string

Parameters

Optional parameters to be embedded into the message.

Declaration
[JsonProperty("parameters")]
public virtual IList<string> Parameters { get; set; }
Property Value
Type Description
IList<string>

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX