This commit is contained in:
HueByte
2026-04-20 15:46:39 +00:00
parent bdec3d4140
commit 54935aa8b5
25 changed files with 2534 additions and 67 deletions
@@ -312,7 +312,7 @@ Class ValidationConstants <a class="header-action link-secondary" title="View s
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public const int MaxHistoryCount = 100</code></pre>
<pre><code class="lang-csharp hljs">public const int MaxHistoryCount = 200</code></pre>
</div>
@@ -198,8 +198,8 @@ Interface IChatService <a class="header-action link-secondary" title="View sour
<a id="EchoHub_Core_Contracts_IChatService_GetChannelHistoryAsync_" data-uid="EchoHub.Core.Contracts.IChatService.GetChannelHistoryAsync*"></a>
<h3 id="EchoHub_Core_Contracts_IChatService_GetChannelHistoryAsync_System_String_System_Int32_" data-uid="EchoHub.Core.Contracts.IChatService.GetChannelHistoryAsync(System.String,System.Int32)">
GetChannelHistoryAsync(string, int)
<h3 id="EchoHub_Core_Contracts_IChatService_GetChannelHistoryAsync_System_String_System_Int32_System_Int32_" data-uid="EchoHub.Core.Contracts.IChatService.GetChannelHistoryAsync(System.String,System.Int32,System.Int32)">
GetChannelHistoryAsync(string, int, int)
<a class="header-action link-secondary" title="View source" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Core/Contracts/IChatService.cs"><i class="bi bi-code-slash"></i></a>
</h3>
@@ -207,7 +207,7 @@ Interface IChatService <a class="header-action link-secondary" title="View sour
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Task&lt;List&lt;MessageDto&gt;&gt; GetChannelHistoryAsync(string channelName, int count)</code></pre>
<pre><code class="lang-csharp hljs">Task&lt;List&lt;MessageDto&gt;&gt; GetChannelHistoryAsync(string channelName, int count, int offset = 0)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -216,6 +216,8 @@ Interface IChatService <a class="header-action link-secondary" title="View sour
<dd></dd>
<dt><code>count</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
<dt><code>offset</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>