Udostępnij za pośrednictwem


HttpRequest Konstruktory

Definicja

Przeciążenia

HttpRequest(String, Int32)

Inicjuje nowe wystąpienie klasy HttpRequest.

HttpRequest(HttpRequest+HttpMethod, String, Dictionary<String,StringExpression>, Object, String, Int32)

Inicjuje nowe wystąpienie klasy HttpRequest.

HttpRequest(String, Int32)

Inicjuje nowe wystąpienie klasy HttpRequest.

public HttpRequest (string callerPath = "", int callerLine = 0);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest : string * int -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest
Public Sub New (Optional callerPath As String = "", Optional callerLine As Integer = 0)

Parametry

callerPath
String

Opcjonalna, pełna ścieżka pliku źródłowego.

callerLine
Int32

Opcjonalnie numer wiersza w pliku źródłowym.

Dotyczy

HttpRequest(HttpRequest+HttpMethod, String, Dictionary<String,StringExpression>, Object, String, Int32)

Inicjuje nowe wystąpienie klasy HttpRequest.

public HttpRequest (Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest.HttpMethod method, string url, System.Collections.Generic.Dictionary<string,AdaptiveExpressions.Properties.StringExpression> headers = default, object body = default, string callerPath = "", int callerLine = 0);
new Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest : Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest.HttpMethod * string * System.Collections.Generic.Dictionary<string, AdaptiveExpressions.Properties.StringExpression> * obj * string * int -> Microsoft.Bot.Builder.Dialogs.Adaptive.Actions.HttpRequest
Public Sub New (method As HttpRequest.HttpMethod, url As String, Optional headers As Dictionary(Of String, StringExpression) = Nothing, Optional body As Object = Nothing, Optional callerPath As String = "", Optional callerLine As Integer = 0)

Parametry

method
HttpRequest.HttpMethod

Metoda HTTP, na przykład POST, GET, DELETE lub PUT.

url
String

Adres URL żądania.

headers
Dictionary<String,StringExpression>

Opcjonalnie nagłówki żądania.

body
Object

Opcjonalnie nieprzetworzona treść żądania.

callerPath
String

Opcjonalna, pełna ścieżka pliku źródłowego.

callerLine
Int32

Opcjonalnie numer wiersza w pliku źródłowym.

Dotyczy