Class HttpRouteHeaderModifier
The specification for modifying HTTP header in HTTP request and HTTP response.
Implements
Inherited Members
Namespace: Google.Apis.NetworkServices.v1.Data
Assembly: Google.Apis.NetworkServices.v1.dll
Syntax
public class HttpRouteHeaderModifier : IDirectResponseSchema
Properties
Add
Add the headers with given map where key is the name of the header, value is the value of the header.
Declaration
[JsonProperty("add")]
public virtual IDictionary<string, string> Add { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Remove
Remove headers (matching by header names) specified in the list.
Declaration
[JsonProperty("remove")]
public virtual IList<string> Remove { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
Set
Completely overwrite/replace the headers with given map where key is the name of the header, value is the value of the header.
Declaration
[JsonProperty("set")]
public virtual IDictionary<string, string> Set { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |