Skip to content

Commit 4fb83aa

Browse files
author
David McCarter
committed
Added documentation links.
1 parent f993f45 commit 4fb83aa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

source/6/dotNetTips.Spargine.6.Core/ExceptionThrower.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ public static void ThrowMessageNotQueuedException(string message, string message
489489
[DoesNotReturn]
490490
[MethodImpl(MethodImplOptions.AggressiveInlining)]
491491
[ExcludeFromCodeCoverage(Justification = "Not needed for this pass-through method.")]
492-
[Information(nameof(ThrowNetworkConnectionException), author: "David McCarter", createdOn: "5/4/2023", Status = Status.New, Documentation = "https://bit.ly/SpargineExThrow")]
492+
[Information(nameof(ThrowNetworkConnectionException), author: "David McCarter", createdOn: "5/4/2023", Status = Status.Available, Documentation = "https://bit.ly/SpargineExThrow")]
493493
public static void ThrowNetworkConnectionException(string message)
494494
{
495495
throw new NetworkConnectionException(message.DefaultIfNull(Resources.ErrorNetworkConnectionIssue));

source/6/dotNetTips.Spargine.6.Extensions/EnumerableExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public static T FirstOrDefault<T>(this IEnumerable<T> list, [NotNull] Func<T, bo
382382
/// <typeparam name="T"></typeparam>
383383
/// <param name="items">The items.</param>
384384
/// <returns><c>true</c> if the specified items has duplicates; otherwise, <c>false</c>.</returns>
385-
[Information("Orginal code by Milan Jovanović", author: "David McCarter", createdOn: "7/3/2023", UnitTestCoverage = 100, BenchMarkStatus = BenchMarkStatus.Completed, Status = Status.New, Documentation = "ADD URL")]
385+
[Information("Orginal code by Milan Jovanović", author: "David McCarter", createdOn: "7/3/2023", UnitTestCoverage = 100, BenchMarkStatus = BenchMarkStatus.Completed, Status = Status.Available, Documentation = "https://bit.ly/SpargineAug23")]
386386
public static bool HasDuplicates<T>([NotNull] this IEnumerable<T> items)
387387
{
388388
if (items.DoesNotHaveItems())
@@ -661,7 +661,7 @@ public static T PickRandom<T>([NotNull] this IEnumerable<T> collection)
661661
/// <typeparam name="T"></typeparam>
662662
/// <param name="items">The items.</param>
663663
/// <returns>SimpleResult&lt;IEnumerable&lt;T&gt;&gt;.</returns>
664-
[Information(nameof(RemoveDuplicates), author: "David McCarter", createdOn: "7/3/2023", UnitTestCoverage = 100, BenchMarkStatus = BenchMarkStatus.Completed, Status = Status.New, Documentation = "ADD URL")]
664+
[Information(nameof(RemoveDuplicates), author: "David McCarter", createdOn: "7/3/2023", UnitTestCoverage = 100, BenchMarkStatus = BenchMarkStatus.Completed, Status = Status.Available, Documentation = "https://bit.ly/SpargineAug23")]
665665

666666
public static SimpleResult<IEnumerable<T>> RemoveDuplicates<T>([NotNull] this IEnumerable<T> items)
667667
{

source/6/dotNetTips.Spargine.6.Extensions/ObjectExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ public static string ToJson([NotNull] this object obj)
447447
/// <param name="obj">The instance.</param>
448448
/// <param name="options">The options.</param>
449449
/// <returns>System.String.</returns>
450-
[Information(nameof(ToJson), UnitTestCoverage = 100, Status = Status.New, Documentation = "ADD URL")]
450+
[Information(nameof(ToJson), UnitTestCoverage = 100, Status = Status.Available, Documentation = "https://bit.ly/SpargineAug23")]
451451
public static SimpleResult<string> ToJson([NotNull] this object obj, JsonSerializerOptions options = null)
452452
{
453453
obj = obj.ArgumentNotNull();

0 commit comments

Comments
 (0)