RestRequest 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
RestRequest() |
Initializes a new instance of the RestRequest class. |
RestRequest(RestRequestMethod, String, RestRequestAuthentication) |
Initializes a new instance of the RestRequest class. |
RestRequest()
Initializes a new instance of the RestRequest class.
public RestRequest ();
Public Sub New ()
Applies to
RestRequest(RestRequestMethod, String, RestRequestAuthentication)
Initializes a new instance of the RestRequest class.
public RestRequest (Microsoft.Azure.Management.DeploymentManager.Models.RestRequestMethod method, string uri, Microsoft.Azure.Management.DeploymentManager.Models.RestRequestAuthentication authentication);
new Microsoft.Azure.Management.DeploymentManager.Models.RestRequest : Microsoft.Azure.Management.DeploymentManager.Models.RestRequestMethod * string * Microsoft.Azure.Management.DeploymentManager.Models.RestRequestAuthentication -> Microsoft.Azure.Management.DeploymentManager.Models.RestRequest
Public Sub New (method As RestRequestMethod, uri As String, authentication As RestRequestAuthentication)
Parameters
- method
- RestRequestMethod
The HTTP method to use for the request. Possible values include: 'GET', 'POST'
- uri
- String
The HTTP URI to use for the request.
- authentication
- RestRequestAuthentication
The authentication information required in the request to the health provider.
Applies to
Azure SDK for .NET