public sealed class ProjectProperties : IMessage<ProjectProperties>, IEquatable<ProjectProperties>, IDeepCloneable<ProjectProperties>, IBufferMessage, IMessage
A descriptor for defining project properties for a service. One service may have many consumer projects, and the service may want to behave differently depending on some properties on the project. For example, a project may be associated with a school, or a business, or a government agency, a business type property on the project may affect how a service responds to the client. This descriptor defines which properties are allowed to be set on a project.
Example:
project_properties: properties:
- name: NO_WATERMARK type: BOOL description: Allows usage of the API without watermarks.
- name: EXTENDED_TILE_CACHE_PERIOD type: INT64
Implements
IMessageProjectProperties, IEquatableProjectProperties, IDeepCloneableProjectProperties, IBufferMessage, IMessageNamespace
Google.ApiAssembly
Google.Api.CommonProtos.dll
Constructors
ProjectProperties()
public ProjectProperties()
ProjectProperties(ProjectProperties)
public ProjectProperties(ProjectProperties other)
Parameter | |
---|---|
Name | Description |
other |
ProjectProperties |
Fields
PropertiesFieldNumber
public const int PropertiesFieldNumber = 1
Field number for the "properties" field.
Field Value | |
---|---|
Type | Description |
int |
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value | |
---|---|
Type | Description |
MessageDescriptor |
Parser
public static MessageParser<ProjectProperties> Parser { get; }
Property Value | |
---|---|
Type | Description |
MessageParserProjectProperties |
Properties
public RepeatedField<Property> Properties { get; }
List of per consumer project-specific properties.
Property Value | |
---|---|
Type | Description |
RepeatedFieldProperty |
Methods
CalculateSize()
public int CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Returns | |
---|---|
Type | Description |
int |
The number of bytes required to write this message to a coded output stream. |
Clone()
public ProjectProperties Clone()
Creates a deep clone of this object.
Returns | |
---|---|
Type | Description |
ProjectProperties |
A deep clone of this object. |
Equals(ProjectProperties)
public bool Equals(ProjectProperties other)
Parameter | |
---|---|
Name | Description |
other |
ProjectProperties |
Returns | |
---|---|
Type | Description |
bool |
Equals(object)
public override bool Equals(object other)
Parameter | |
---|---|
Name | Description |
other |
object |
Returns | |
---|---|
Type | Description |
bool |
GetHashCode()
public override int GetHashCode()
Returns | |
---|---|
Type | Description |
int |
MergeFrom(ProjectProperties)
public void MergeFrom(ProjectProperties other)
Merges the given message into this one.
Parameter | |
---|---|
Name | Description |
other |
ProjectProperties |
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.
Parameter | |
---|---|
Name | Description |
input |
CodedInputStream |
See the user guide for precise merge semantics.
ToString()
public override string ToString()
Returns | |
---|---|
Type | Description |
string |
WriteTo(CodedOutputStream)
public void WriteTo(CodedOutputStream output)
Writes the data to the given coded output stream.
Parameter | |
---|---|
Name | Description |
output |
CodedOutputStream Coded output stream to write the data to. Must not be null. |