Show / Hide Table of Contents

Class ParserConfig

The configuration for the parser. It determines how the server parses the messages.

Inheritance
System.Object
ParserConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class ParserConfig : IDirectResponseSchema

Properties

AllowNullHeader

Determines whether messages with no header are allowed.

Declaration
[JsonProperty("allowNullHeader")]
public virtual bool? AllowNullHeader { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

SegmentTerminator

Byte(s) to use as the segment terminator. If this is unset, '\r' is used as segment terminator.

Declaration
[JsonProperty("segmentTerminator")]
public virtual string SegmentTerminator { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top