RequestContract Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RequestContract() |
Initializes a new instance of the RequestContract class. |
RequestContract(String, IList<ParameterContract>, IList<ParameterContract>, IList<RepresentationContract>) |
Initializes a new instance of the RequestContract class. |
RequestContract()
Initializes a new instance of the RequestContract class.
public RequestContract ();
Public Sub New ()
Applies to
RequestContract(String, IList<ParameterContract>, IList<ParameterContract>, IList<RepresentationContract>)
Initializes a new instance of the RequestContract class.
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)
Parameters
- description
- String
Operation request description.
- queryParameters
- IList<ParameterContract>
Collection of operation request query parameters.
- headers
- IList<ParameterContract>
Collection of operation request headers.
- representations
- IList<RepresentationContract>
Collection of operation request representations.
Applies to
Azure SDK for .NET