GraphQL.FluentValidation
Advanced tools
Sorry, the diff of this file is not supported yet
@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>GraphQL.FluentValidation</id> | ||
| <version>8.3.0</version> | ||
| <version>9.0.0</version> | ||
| <authors>https://github.com/SimonCropp/GraphQL.Validation/graphs/contributors</authors> | ||
@@ -15,7 +15,7 @@ <license type="expression">MIT</license> | ||
| <tags>GraphQL, Validation, FluentValidation</tags> | ||
| <repository type="git" url="https://github.com/SimonCropp/GraphQL.Validation.git" commit="d24e271ee80ae3d1ad9357501b0494a5a54a1941" /> | ||
| <repository type="git" url="https://github.com/SimonCropp/GraphQL.Validation.git" commit="6287c42911e5a7b5afd67697ea33b25674745159" /> | ||
| <dependencies> | ||
| <group targetFramework="net6.0"> | ||
| <dependency id="FluentValidation" version="11.5.2" exclude="Build,Analyzers" /> | ||
| <dependency id="GraphQL" version="7.4.1" exclude="Build,Analyzers" /> | ||
| <dependency id="GraphQL" version="7.5.0" exclude="Build,Analyzers" /> | ||
| <dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="7.0.0" exclude="Build,Analyzers" /> | ||
@@ -22,0 +22,0 @@ </group> |
@@ -197,2 +197,60 @@ <?xml version="1.0"?> | ||
| </member> | ||
| <member name="M:PolyfillExtensions.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})"> | ||
| <summary> | ||
| Returns the maximum value in a generic sequence according to a specified key selector function. | ||
| </summary> | ||
| <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> | ||
| <typeparam name="TKey">The type of key to compare elements by.</typeparam> | ||
| <param name="source">A sequence of values to determine the maximum value of.</param> | ||
| <param name="keySelector">A function to extract the key for each element.</param> | ||
| <returns>The value with the maximum key in the sequence.</returns> | ||
| <exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception> | ||
| <exception cref="T:System.ArgumentException">No key extracted from <paramref name="source" /> implements the <see cref="T:System.IComparable" /> or <see cref="T:System.IComparable`1" /> interface.</exception> | ||
| <remarks> | ||
| <para>If <typeparamref name="TKey" /> is a reference type and the source sequence is empty or contains only values that are <see langword="null" />, this method returns <see langword="null" />.</para> | ||
| </remarks> | ||
| </member> | ||
| <member name="M:PolyfillExtensions.MaxBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})"> | ||
| <summary>Returns the maximum value in a generic sequence according to a specified key selector function.</summary> | ||
| <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> | ||
| <typeparam name="TKey">The type of key to compare elements by.</typeparam> | ||
| <param name="source">A sequence of values to determine the maximum value of.</param> | ||
| <param name="keySelector">A function to extract the key for each element.</param> | ||
| <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param> | ||
| <returns>The value with the maximum key in the sequence.</returns> | ||
| <exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception> | ||
| <exception cref="T:System.ArgumentException">No key extracted from <paramref name="source" /> implements the <see cref="T:System.IComparable" /> or <see cref="T:System.IComparable`1" /> interface.</exception> | ||
| <remarks> | ||
| <para>If <typeparamref name="TKey" /> is a reference type and the source sequence is empty or contains only values that are <see langword="null" />, this method returns <see langword="null" />.</para> | ||
| </remarks> | ||
| </member> | ||
| <member name="M:PolyfillExtensions.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})"> | ||
| <summary> | ||
| Returns the minimum value in a generic sequence according to a specified key selector function. | ||
| </summary> | ||
| <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> | ||
| <typeparam name="TKey">The type of key to compare elements by.</typeparam> | ||
| <param name="source">A sequence of values to determine the minby value of.</param> | ||
| <param name="keySelector">A function to extract the key for each element.</param> | ||
| <returns>The value with the minimum key in the sequence.</returns> | ||
| <exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception> | ||
| <exception cref="T:System.ArgumentException">No key extracted from <paramref name="source" /> implements the <see cref="T:System.IComparable" /> or <see cref="T:System.IComparable`1" /> interface.</exception> | ||
| <remarks> | ||
| <para>If <typeparamref name="TKey" /> is a reference type and the source sequence is empty or contains only values that are <see langword="null" />, this method returns <see langword="null" />.</para> | ||
| </remarks> | ||
| </member> | ||
| <member name="M:PolyfillExtensions.MinBy``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})"> | ||
| <summary>Returns the minimum value in a generic sequence according to a specified key selector function.</summary> | ||
| <typeparam name="TSource">The type of the elements of <paramref name="source" />.</typeparam> | ||
| <typeparam name="TKey">The type of key to compare elements by.</typeparam> | ||
| <param name="source">A sequence of values to determine the minimum value of.</param> | ||
| <param name="keySelector">A function to extract the key for each element.</param> | ||
| <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1" /> to compare keys.</param> | ||
| <returns>The value with the minimum key in the sequence.</returns> | ||
| <exception cref="T:System.ArgumentNullException"><paramref name="source" /> is <see langword="null" />.</exception> | ||
| <exception cref="T:System.ArgumentException">No key extracted from <paramref name="source" /> implements the <see cref="T:System.IComparable" /> or <see cref="T:System.IComparable`1" /> interface.</exception> | ||
| <remarks> | ||
| <para>If <typeparamref name="TKey" /> is a reference type and the source sequence is empty or contains only values that are <see langword="null" />, this method returns <see langword="null" />.</para> | ||
| </remarks> | ||
| </member> | ||
| <member name="M:PolyfillExtensions.Nanoseconds(System.TimeSpan)"> | ||
@@ -199,0 +257,0 @@ <summary> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet