public sealed class Http : IMessage<Http>, IEquatable<Http>, IDeepCloneable<Http>, IBufferMessage, IMessage
Defines the HTTP configuration for an API service. It contains a list of [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method to one or more HTTP REST API methods.
Namespace
Google.ApiAssembly
Google.Api.CommonProtos.dll
Constructors
Http()
public Http()
Http(Http)
public Http(Http other)
Fields
FullyDecodeReservedExpansionFieldNumber
public
const
int
FullyDecodeReservedExpansionFieldNumber
=
2
Field number for the "fully_decode_reserved_expansion" field.
RulesFieldNumber
public
const
int
RulesFieldNumber
=
1
Field number for the "rules" field.
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
FullyDecodeReservedExpansion
public bool FullyDecodeReservedExpansion { get; set; }
When set to true, URL path parameters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded.
The default behavior is to not decode RFC 6570 reserved characters in multi segment matches.
Parser
public static MessageParser<Http> Parser { get; }
Rules
public RepeatedField<HttpRule> Rules { get; }
A list of HTTP configuration rules that apply to individual API methods.
NOTE:All service configuration rules follow "last one wins" order.
Methods
CalculateSize()
public int CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
The number of bytes required to write this message to a coded output stream.
Clone()
public Http Clone()
Creates a deep clone of this object.
Equals(Http)
public bool Equals(Http other)
Equals(object)
public override bool Equals(object other)
GetHashCode()
public override int GetHashCode()
MergeFrom(Http)
public void MergeFrom(Http other)
Merges the given message into this one.
See the user guide for precise merge semantics.
MergeFrom(CodedInputStream)
public void MergeFrom(CodedInputStream input)
Merges the data from the specified coded input stream with the current message.
See the user guide for precise merge semantics.
ToString()
public override string ToString()
WriteTo(CodedOutputStream)
public void WriteTo(CodedOutputStream output)
Writes the data to the given coded output stream.
output