Redigera

Dela via


AsyncEnumerable.Cast<TResult>(IAsyncEnumerable<Object>) Method

Definition

Casts the elements of an IAsyncEnumerable<T> to the specified type.

public:
generic <typename TResult>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IAsyncEnumerable<TResult> ^ Cast(System::Collections::Generic::IAsyncEnumerable<System::Object ^> ^ source);
public static System.Collections.Generic.IAsyncEnumerable<TResult> Cast<TResult>(this System.Collections.Generic.IAsyncEnumerable<object?> source);
static member Cast : System.Collections.Generic.IAsyncEnumerable<obj> -> System.Collections.Generic.IAsyncEnumerable<'Result>
<Extension()>
Public Function Cast(Of TResult) (source As IAsyncEnumerable(Of Object)) As IAsyncEnumerable(Of TResult)

Type Parameters

TResult

The type to cast the elements of source to.

Parameters

source
IAsyncEnumerable<Object>

The IAsyncEnumerable<T> that contains the elements to be cast to type TResult.

Returns

IAsyncEnumerable<TResult>

An IAsyncEnumerable<T> that contains each element of the source sequence cast to the TResult type.

Applies to