你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RequestContract 构造函数

定义

重载

RequestContract()

初始化 RequestContract 类的新实例。

RequestContract(String, IList<ParameterContract>, IList<ParameterContract>, IList<RepresentationContract>)

初始化 RequestContract 类的新实例。

RequestContract()

初始化 RequestContract 类的新实例。

public RequestContract ();
Public Sub New ()

适用于

RequestContract(String, IList<ParameterContract>, IList<ParameterContract>, IList<RepresentationContract>)

初始化 RequestContract 类的新实例。

public RequestContract (string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> queryParameters = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> headers = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.RepresentationContract> representations = default);
new Microsoft.Azure.Management.ApiManagement.Models.RequestContract : string * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ParameterContract> * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.RepresentationContract> -> Microsoft.Azure.Management.ApiManagement.Models.RequestContract
Public Sub New (Optional description As String = Nothing, Optional queryParameters As IList(Of ParameterContract) = Nothing, Optional headers As IList(Of ParameterContract) = Nothing, Optional representations As IList(Of RepresentationContract) = Nothing)

参数

description
String

操作请求说明。

queryParameters
IList<ParameterContract>

操作请求查询参数的集合。

headers
IList<ParameterContract>

操作请求标头的集合。

representations
IList<RepresentationContract>

操作请求表示形式的集合。

适用于