Class IAsyncCursorSourceExtensions
Represents extension methods for IAsyncCursorSource.
public static class IAsyncCursorSourceExtensions
- Inheritance
-
IAsyncCursorSourceExtensions
- Inherited Members
Methods
AnyAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Determines whether the cursor returned by a cursor source contains any documents.
public static Task<bool> AnyAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
Type Parameters
TDocument
The type of the document.
Any<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Determines whether the cursor returned by a cursor source contains any documents.
public static bool Any<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- bool
True if the cursor contains any documents.
Type Parameters
TDocument
The type of the document.
FirstAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the first document of a cursor returned by a cursor source.
public static Task<TDocument> FirstAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<TDocument>
A Task whose result is the first document.
Type Parameters
TDocument
The type of the document.
FirstOrDefaultAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
public static Task<TDocument> FirstOrDefaultAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<TDocument>
A Task whose result is the first document of the cursor, or a default value if the cursor contains no documents.
Type Parameters
TDocument
The type of the document.
FirstOrDefault<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
public static TDocument FirstOrDefault<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- TDocument
The first document of the cursor, or a default value if the cursor contains no documents.
Type Parameters
TDocument
The type of the document.
First<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the first document of a cursor returned by a cursor source.
public static TDocument First<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- TDocument
The first document.
Type Parameters
TDocument
The type of the document.
ForEachAsync<TDocument>(IAsyncCursorSource<TDocument>, Action<TDocument, int>, CancellationToken)
Calls a delegate for each document returned by the cursor.
public static Task ForEachAsync<TDocument>(this IAsyncCursorSource<TDocument> source, Action<TDocument, int> processor, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
processor
Action<TDocument, int>The processor.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task
A Task that completes when all the documents have been processed.
Type Parameters
TDocument
The type of the document.
Remarks
If your delegate is going to take a long time to execute or is going to block consider using a different overload of ForEachAsync that uses a delegate that returns a Task instead.
ForEachAsync<TDocument>(IAsyncCursorSource<TDocument>, Action<TDocument>, CancellationToken)
Calls a delegate for each document returned by the cursor.
public static Task ForEachAsync<TDocument>(this IAsyncCursorSource<TDocument> source, Action<TDocument> processor, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
processor
Action<TDocument>The processor.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task
A Task that completes when all the documents have been processed.
Type Parameters
TDocument
The type of the document.
Remarks
If your delegate is going to take a long time to execute or is going to block consider using a different overload of ForEachAsync that uses a delegate that returns a Task instead.
ForEachAsync<TDocument>(IAsyncCursorSource<TDocument>, Func<TDocument, int, Task>, CancellationToken)
Calls a delegate for each document returned by the cursor.
public static Task ForEachAsync<TDocument>(this IAsyncCursorSource<TDocument> source, Func<TDocument, int, Task> processor, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
processor
Func<TDocument, int, Task>The processor.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task
A Task that completes when all the documents have been processed.
Type Parameters
TDocument
The type of the document.
ForEachAsync<TDocument>(IAsyncCursorSource<TDocument>, Func<TDocument, Task>, CancellationToken)
Calls a delegate for each document returned by the cursor.
public static Task ForEachAsync<TDocument>(this IAsyncCursorSource<TDocument> source, Func<TDocument, Task> processor, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
processor
Func<TDocument, Task>The processor.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task
A Task that completes when all the documents have been processed.
Type Parameters
TDocument
The type of the document.
SingleAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
public static Task<TDocument> SingleAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<TDocument>
A Task whose result is the only document of a cursor.
Type Parameters
TDocument
The type of the document.
SingleOrDefaultAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents. This method throws an exception if the cursor contains more than one document.
public static Task<TDocument> SingleOrDefaultAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- Task<TDocument>
A Task whose result is the only document of a cursor, or a default value if the cursor contains no documents.
Type Parameters
TDocument
The type of the document.
SingleOrDefault<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents. This method throws an exception if the cursor contains more than one document.
public static TDocument SingleOrDefault<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- TDocument
The only document of a cursor, or a default value if the cursor contains no documents.
Type Parameters
TDocument
The type of the document.
Single<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
public static TDocument Single<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- TDocument
The only document of a cursor.
Type Parameters
TDocument
The type of the document.
ToEnumerable<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Wraps a cursor source in an IEnumerable. Each time GetEnumerator is called a new cursor is fetched from the cursor source.
public static IEnumerable<TDocument> ToEnumerable<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- IEnumerable<TDocument>
An IEnumerable.
Type Parameters
TDocument
The type of the document.
ToListAsync<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns a list containing all the documents returned by the cursor returned by a cursor source.
public static Task<List<TDocument>> ToListAsync<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
Type Parameters
TDocument
The type of the document.
ToList<TDocument>(IAsyncCursorSource<TDocument>, CancellationToken)
Returns a list containing all the documents returned by the cursor returned by a cursor source.
public static List<TDocument> ToList<TDocument>(this IAsyncCursorSource<TDocument> source, CancellationToken cancellationToken = default)
Parameters
source
IAsyncCursorSource<TDocument>The source.
cancellationToken
CancellationTokenThe cancellation token.
Returns
- List<TDocument>
The list of documents.
Type Parameters
TDocument
The type of the document.