Request Constructors

Definition

Overloads

Request()

Initializes a new instance of the Request class.

Request(Object, String, String)

Initializes a new instance of the Request class.

Request()

Initializes a new instance of the Request class.

public Request ();
Public Sub New ()

Applies to

Request(Object, String, String)

Initializes a new instance of the Request class.

public Request (object headers = default, string uri = default, string method = default);
new Microsoft.Azure.Management.Logic.Models.Request : obj * string * string -> Microsoft.Azure.Management.Logic.Models.Request
Public Sub New (Optional headers As Object = Nothing, Optional uri As String = Nothing, Optional method As String = Nothing)

Parameters

headers
Object

A list of all the headers attached to the request.

uri
String

The destination for the request.

method
String

The HTTP method used for the request.

Applies to