Skip to content

Commit

Permalink
RavenDB-21980 : move documentation link to a dedicated class
Browse files Browse the repository at this point in the history
  • Loading branch information
aviv committed Mar 5, 2024
1 parent b9f0a1f commit d39528d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/Raven.Client/DocumentationUrls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ internal static class SortQueryResults
public const string Distinct = nameof(Distinct);
}

internal static class Counters
{
///<remarks><seealso href="https://ravendb.net/docs/article-page/6.0/csharp/document-extensions/counters/overview"/></remarks>
public const string Overview = nameof(Overview);
}

internal static class Transactions
{
///<remarks><seealso href="https://ravendb.net/docs/article-page/6.0/csharp/client-api/faq/transaction-support"/></remarks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ namespace Raven.Client.Documents.Session
{
/// <summary>
/// Provides client API for counter operations on a specific entity.<br/>
/// Counters are numeric data variables that can be added to documents,
/// and are used to perform high frequency counting in a distributed manner.<br/>
/// Read more about Counters <see href="https://ravendb.net/docs/article-page/6.0/csharp/document-extensions/counters/overview">here</see>
/// Counters are numeric data variables that can be added to documents. <br/>
/// They are designed to perform high frequency counting in a distributed manner, <br/>
/// while ensuring conflict-free behavior.
/// </summary>
/// <inheritdoc cref="DocumentationUrls.Session.Counters.Overview"/>
public interface ISessionDocumentCounters : ISessionDocumentCountersBase
{
/// <summary>
Expand Down

0 comments on commit d39528d

Please sign in to comment.