Show / Hide Table of Contents

Class Method

Method represents a method of an API interface.

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

Properties

ETag

The ETag of the item.

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

Name

The simple name of this method.

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

Options

Any metadata attached to the method.

Declaration
[JsonProperty("options")]
public virtual IList<Option> Options { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Option>

RequestStreaming

If true, the request is streamed.

Declaration
[JsonProperty("requestStreaming")]
public virtual bool? RequestStreaming { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

RequestTypeUrl

A URL of the input message type.

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

ResponseStreaming

If true, the response is streamed.

Declaration
[JsonProperty("responseStreaming")]
public virtual bool? ResponseStreaming { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResponseTypeUrl

The URL of the output message type.

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

Syntax

The source syntax of this method.

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

Implements

IDirectResponseSchema
In This Article
Back to top