You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Determines whether all the elements of a sequence satisfy a condition.
109
-
/// </summary>
110
-
/// <remarks>
111
-
/// Multiple active operations on the same context instance are not supported. Use 'await' to ensure
112
-
/// that All asynchronous operations have completed before calling another method on this context.
113
-
/// </remarks>
114
-
/// <param name="source">
115
-
/// An <see cref="IQueryable" /> to calculate the All of.
116
-
/// </param>
117
-
/// <param name="predicate">A projection function to apply to each element.</param>
107
+
/// <summary>Determines whether all the elements of a sequence satisfy a condition.</summary>
108
+
/// <param name="source">A sequence whose elements to test for a condition.</param>
109
+
/// <param name="predicate">A function to test each element for a condition.</param>
118
110
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
119
-
/// <returns>
120
-
/// true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.
121
-
/// </returns>
111
+
/// <returns>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</returns>
/// <param name="predicate">A projection function to apply to each element.</param>
121
+
/// <param name="predicate">A function to test each element for a condition.</param>
140
122
/// <param name="args">An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</param>
141
-
/// <returns>
142
-
/// true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.
143
-
/// </returns>
123
+
/// <returns>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</returns>
0 commit comments