HubConnectionExtensions.StreamAsync Methode
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
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, CancellationToken) |
Ruft eine Streaminghubmethode auf dem Server unter Verwendung des angegebenen Methodennamens und Rückgabetyps auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken) |
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf. |
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- arg6
- Object
Das sechste Argument.
- arg7
- Object
Das siebte Argument.
- arg8
- Object
Das achte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- arg6
- Object
Das sechste Argument.
- arg7
- Object
Das siebte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- arg6
- Object
Das sechste Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, CancellationToken)
Ruft eine Streaminghubmethode auf dem Server unter Verwendung des angegebenen Methodennamens und Rückgabetyps auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, arg9 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- arg6
- Object
Das sechste Argument.
- arg7
- Object
Das siebte Argument.
- arg8
- Object
Das achte Argument.
- arg9
- Object
Das neunte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.
Gilt für:
StreamAsync<TResult>(HubConnection, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
Ruft eine Streaming hub-Methode auf dem Server unter Verwendung des angegebenen Methodennamens, Rückgabetyps und Arguments auf.
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10, System.Threading.CancellationToken cancellationToken = default);
public static System.Collections.Generic.IAsyncEnumerable<TResult> StreamAsync<TResult> (this Microsoft.AspNetCore.SignalR.Client.HubConnection hubConnection, string methodName, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken = default);
static member StreamAsync : Microsoft.AspNetCore.SignalR.Client.HubConnection * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function StreamAsync(Of TResult) (hubConnection As HubConnection, methodName As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, arg9 As Object, arg10 As Object, Optional cancellationToken As CancellationToken = Nothing) As IAsyncEnumerable(Of TResult)
Typparameter
- TResult
Der Rückgabetyp der Streamingservermethode.
Parameter
- hubConnection
- HubConnection
Die Hubverbindung.
- methodName
- String
Der Name der aufzurufenden Servermethode.
- arg1
- Object
Das erste Argument.
- arg2
- Object
Das zweite Argument.
- arg3
- Object
Das dritte Argument.
- arg4
- Object
Das vierte Argument.
- arg5
- Object
Das fünfte Argument.
- arg6
- Object
Das sechste Argument.
- arg7
- Object
Das siebte Argument.
- arg8
- Object
Das achte Argument.
- arg9
- Object
Das neunte Argument.
- arg10
- Object
Das zehnte Argument.
- cancellationToken
- CancellationToken
Das Token zum Überwachen von Abbruchanforderungen. Der Standardwert ist None.
Gibt zurück
Eine IAsyncEnumerable<T> , die den Stream darstellt.