HttpRequest Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
HttpRequest(String, Int32) |
Initialisiert eine neue Instanz der HttpRequest-Klasse. |
HttpRequest(HttpRequest+HttpMethod, String, Dictionary<String,StringExpression>, Object, String, Int32) |
Initialisiert eine neue Instanz der HttpRequest-Klasse. |
HttpRequest(String, Int32)
Initialisiert eine neue Instanz der HttpRequest-Klasse.
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)
Parameter
- callerPath
- String
Optional, vollständiger Pfad der Quelldatei.
- callerLine
- Int32
Optional, Zeilennummer in der Quelldatei.
Gilt für:
HttpRequest(HttpRequest+HttpMethod, String, Dictionary<String,StringExpression>, Object, String, Int32)
Initialisiert eine neue Instanz der HttpRequest-Klasse.
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)
Parameter
- method
- HttpRequest.HttpMethod
Die HTTP-Methode, z. B. POST, GET, DELETE oder PUT.
- url
- String
URL für die Anforderung.
- headers
- Dictionary<String,StringExpression>
Optional, die Header der Anforderung.
- body
- Object
Optional, der rohe Text der Anforderung.
- callerPath
- String
Optional, vollständiger Pfad der Quelldatei.
- callerLine
- Int32
Optional, Zeilennummer in der Quelldatei.