AsyncEnumerable.Empty<TResult> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an empty IAsyncEnumerable<T> that has the specified type argument.
public:
generic <typename TResult>
static System::Collections::Generic::IAsyncEnumerable<TResult> ^ Empty();
public static System.Collections.Generic.IAsyncEnumerable<TResult> Empty<TResult>();
static member Empty : unit -> System.Collections.Generic.IAsyncEnumerable<'Result>
Public Function Empty(Of TResult) () As IAsyncEnumerable(Of TResult)
Type Parameters
- TResult
The type of the elements of the sequence.
Returns
IAsyncEnumerable<TResult>
An empty IAsyncEnumerable<T> whose type argument is TResult
.
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.