Show / Hide Table of Contents

Class MessagePartHeader

Inheritance
System.Object
MessagePartHeader
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.Gmail.v1.Data
Assembly: Google.Apis.Gmail.v1.dll
Syntax
public class MessagePartHeader : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Name

The name of the header before the : separator. For example, To.

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

Value

The value of the header after the : separator. For example, someuser@example.com.

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

Implements

IDirectResponseSchema
Back to top