This commit is contained in:
HueByte
2026-07-17 19:09:56 +00:00
parent dfbe5be317
commit a6bf50c567
73 changed files with 17893 additions and 427 deletions
@@ -510,8 +510,8 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<a id="EchoHub_Client_Services_EchoHubConnection_SendMessageAsync_" data-uid="EchoHub.Client.Services.EchoHubConnection.SendMessageAsync*"></a>
<h3 id="EchoHub_Client_Services_EchoHubConnection_SendMessageAsync_System_String_System_String_" data-uid="EchoHub.Client.Services.EchoHubConnection.SendMessageAsync(System.String,System.String)">
SendMessageAsync(string, string)
<h3 id="EchoHub_Client_Services_EchoHubConnection_SendMessageAsync_System_String_System_String_System_Nullable_System_Guid__" data-uid="EchoHub.Client.Services.EchoHubConnection.SendMessageAsync(System.String,System.String,System.Nullable{System.Guid})">
SendMessageAsync(string, string, Guid?)
<a class="header-action link-secondary" title="View source" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Client/Services/EchoHubConnection.cs"><i class="bi bi-code-slash"></i></a>
</h3>
@@ -519,7 +519,7 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Task SendMessageAsync(string channelName, string content)</code></pre>
<pre><code class="lang-csharp hljs">public Task SendMessageAsync(string channelName, string content, Guid? replyToMessageId = null)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -528,6 +528,8 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<dd></dd>
<dt><code>content</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>replyToMessageId</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.guid">Guid</a>?</dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
@@ -589,6 +591,36 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<h3 id="EchoHub_Client_Services_EchoHubConnection_OnChannelDeleted" data-uid="EchoHub.Client.Services.EchoHubConnection.OnChannelDeleted">
OnChannelDeleted
<a class="header-action link-secondary" title="View source" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Client/Services/EchoHubConnection.cs"><i class="bi bi-code-slash"></i></a>
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public event Action&lt;string&gt;? OnChannelDeleted</code></pre>
</div>
<h4 class="section">Event Type</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.action-1">Action</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a>&gt;</dt>
<dd></dd>
</dl>
<h3 id="EchoHub_Client_Services_EchoHubConnection_OnChannelNuked" data-uid="EchoHub.Client.Services.EchoHubConnection.OnChannelNuked">
OnChannelNuked
<a class="header-action link-secondary" title="View source" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Client/Services/EchoHubConnection.cs"><i class="bi bi-code-slash"></i></a>