Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public IDirectoryContents GetDirectoryContents(string subpath)

/// <summary>
/// <para>Creates a <see cref="IChangeToken" /> for the specified <paramref name="filter" />.</para>
/// <para>Globbing patterns are interpreted by <seealso cref="Microsoft.Extensions.FileSystemGlobbing.Matcher" />.</para>
/// <para>Globbing patterns are interpreted by <see cref="Microsoft.Extensions.FileSystemGlobbing.Matcher" />.</para>
/// </summary>
/// <param name="filter">
/// Filter string used to determine what files or folders to monitor. Example: **/*.cs, *.*,
Expand All @@ -350,7 +350,7 @@ public IDirectoryContents GetDirectoryContents(string subpath)
/// An <see cref="IChangeToken" /> that is notified when a file matching <paramref name="filter" /> is added,
/// modified, or deleted. Returns a <see cref="NullChangeToken" /> if <paramref name="filter" /> has invalid filter
/// characters or if <paramref name="filter" /> is an absolute path or outside the root directory specified in the
/// constructor <seealso cref="PhysicalFileProvider(string)" />.
/// constructor <see cref="PhysicalFileProvider(string)" />.
/// </returns>
public IChangeToken Watch(string filter)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public static partial class AsyncEnumerable
/// <param name="predicate">A function to test each element for a condition.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>
/// true if every element of the source sequence passes the test in the specified predicate,
/// or if the sequence is empty; otherwise, false.
/// <see langword="true"/> if every element of the source sequence passes the test in the specified predicate,
/// or if the sequence is empty; otherwise, <see langword="false"/>.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="predicate"/> is <see langword="null"/>.</exception>
Expand Down Expand Up @@ -53,8 +53,8 @@ static async ValueTask<bool> Impl(
/// <param name="predicate">A function to test each element for a condition.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>
/// true if every element of the source sequence passes the test in the specified predicate,
/// or if the sequence is empty; otherwise, false.
/// <see langword="true"/> if every element of the source sequence passes the test in the specified predicate,
/// or if the sequence is empty; otherwise, <see langword="false"/>.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="predicate"/> is <see langword="null"/>.</exception>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static partial class AsyncEnumerable
/// <typeparam name="TSource">The type of the elements of source.</typeparam>
/// <param name="source">The <see cref="IAsyncEnumerable{T}"/> to check for emptiness.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>true if the source sequence contains any elements; otherwise, false.</returns>
/// <returns><see langword="true"/> if the source sequence contains any elements; otherwise, <see langword="false"/>.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
public static ValueTask<bool> AnyAsync<TSource>(
this IAsyncEnumerable<TSource> source,
Expand Down Expand Up @@ -46,8 +46,8 @@ static async ValueTask<bool> Impl(
/// <param name="predicate">A function to test each element for a condition.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>
/// true if the source sequence is not empty and at least one of its elements passes
/// the test in the specified predicate; otherwise, false.
/// <see langword="true"/> if the source sequence is not empty and at least one of its elements passes
/// the test in the specified predicate; otherwise, <see langword="false"/>.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="predicate"/> is <see langword="null"/>.</exception>
Expand Down Expand Up @@ -83,8 +83,8 @@ static async ValueTask<bool> Impl(
/// <param name="predicate">A function to test each element for a condition.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>
/// true if the source sequence is not empty and at least one of its elements passes
/// the test in the specified predicate; otherwise, false.
/// <see langword="true"/> if the source sequence is not empty and at least one of its elements passes
/// the test in the specified predicate; otherwise, <see langword="false"/>.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="predicate"/> is <see langword="null"/>.</exception>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static partial class AsyncEnumerable
/// <param name="value">The value to locate in the sequence.</param>
/// <param name="comparer">An equality comparer to compare values.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>true if the source sequence contains an element that has the specified value; otherwise, false.</returns>
/// <returns><see langword="true"/> if the source sequence contains an element that has the specified value; otherwise, <see langword="false"/>.</returns>
/// <exception cref="ArgumentNullException"><paramref name="source"/> is <see langword="null"/>.</exception>
public static ValueTask<bool> ContainsAsync<TSource>(
this IAsyncEnumerable<TSource> source,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public static partial class AsyncEnumerable
/// <param name="comparer">An <see cref="IEqualityComparer{T}"/> to use to compare elements.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
/// <returns>
/// true if the two source sequences are of equal length and their corresponding
/// elements compare equal according to comparer; otherwise, false.
/// <see langword="true"/> if the two source sequences are of equal length and their corresponding
/// elements compare equal according to comparer; otherwise, <see langword="false"/>.
/// </returns>
public static ValueTask<bool> SequenceEqualAsync<TSource>(
this IAsyncEnumerable<TSource> first,
Expand Down
Loading