Class JsonWebToken.Header
JWT Header as specified in http://tools.ietf.org/html/draft-ietf-oauth-json-web-token-08#section-5.
Inherited Members
Namespace: Google.Apis.Auth
Assembly: Google.Apis.Auth.dll
Syntax
public class JsonWebToken.Header
Properties
ContentType
Gets or sets content type header parameter used to declare structural information about the JWT or
null
.
Declaration
[JsonProperty("cty")]
public string ContentType { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Gets or sets type header parameter used to declare the type of this object or null
.
Declaration
[JsonProperty("typ")]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |