This commit is contained in:
HueByte
2026-07-16 03:54:30 +00:00
parent 35bf05433e
commit 9944e86ee3
71 changed files with 14161 additions and 884 deletions
@@ -157,8 +157,8 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<a id="EchoHub_Client_Services_EchoHubConnection__ctor_" data-uid="EchoHub.Client.Services.EchoHubConnection.#ctor*"></a>
<h3 id="EchoHub_Client_Services_EchoHubConnection__ctor_System_String_EchoHub_Client_Services_ApiClient_EchoHub_Client_Services_ClientEncryptionService_" data-uid="EchoHub.Client.Services.EchoHubConnection.#ctor(System.String,EchoHub.Client.Services.ApiClient,EchoHub.Client.Services.ClientEncryptionService)">
EchoHubConnection(string, ApiClient, ClientEncryptionService)
<h3 id="EchoHub_Client_Services_EchoHubConnection__ctor_System_String_EchoHub_Client_Services_ApiClient_EchoHub_Client_Services_ClientEncryptionService_EchoHub_Client_Services_RoomKeyStore_" data-uid="EchoHub.Client.Services.EchoHubConnection.#ctor(System.String,EchoHub.Client.Services.ApiClient,EchoHub.Client.Services.ClientEncryptionService,EchoHub.Client.Services.RoomKeyStore)">
EchoHubConnection(string, ApiClient, ClientEncryptionService, RoomKeyStore)
<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>
@@ -166,7 +166,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 EchoHubConnection(string serverUrl, ApiClient apiClient, ClientEncryptionService encryption)</code></pre>
<pre><code class="lang-csharp hljs">public EchoHubConnection(string serverUrl, ApiClient apiClient, ClientEncryptionService encryption, RoomKeyStore roomKeys)</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -177,6 +177,8 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<dd></dd>
<dt><code>encryption</code> <a class="xref" href="EchoHub.Client.Services.ClientEncryptionService.html">ClientEncryptionService</a></dt>
<dd></dd>
<dt><code>roomKeys</code> <a class="xref" href="EchoHub.Client.Services.RoomKeyStore.html">RoomKeyStore</a></dt>
<dd></dd>
</dl>
@@ -190,6 +192,40 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<h2 class="section" id="fields">Fields
</h2>
<h3 id="EchoHub_Client_Services_EchoHubConnection_LockedMessagePlaceholder" data-uid="EchoHub.Client.Services.EchoHubConnection.LockedMessagePlaceholder">
LockedMessagePlaceholder
<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 const string LockedMessagePlaceholder = &quot;[encrypted — rejoin this channel with its passphrase to unlock]&quot;</code></pre>
</div>
<h4 class="section">Field Value</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h2 class="section" id="properties">Properties
</h2>
@@ -400,8 +436,8 @@ Class EchoHubConnection <a class="header-action link-secondary" title="View sou
<a id="EchoHub_Client_Services_EchoHubConnection_JoinChannelAsync_" data-uid="EchoHub.Client.Services.EchoHubConnection.JoinChannelAsync*"></a>
<h3 id="EchoHub_Client_Services_EchoHubConnection_JoinChannelAsync_System_String_" data-uid="EchoHub.Client.Services.EchoHubConnection.JoinChannelAsync(System.String)">
JoinChannelAsync(string)
<h3 id="EchoHub_Client_Services_EchoHubConnection_JoinChannelAsync_System_String_System_String_" data-uid="EchoHub.Client.Services.EchoHubConnection.JoinChannelAsync(System.String,System.String)">
JoinChannelAsync(string, string?)
<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>
@@ -409,18 +445,20 @@ 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&lt;List&lt;MessageDto&gt;&gt; JoinChannelAsync(string channelName)</code></pre>
<pre><code class="lang-csharp hljs">public Task&lt;JoinOutcome&gt; JoinChannelAsync(string channelName, string? password = null)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>channelName</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
<dt><code>password</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd></dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><span class="xref">Task</span>&lt;<span class="xref">List</span>&lt;<a class="xref" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Core/DTOs/ChatDtos.cs">MessageDto</a>&gt;&gt;</dt>
<dt><span class="xref">Task</span>&lt;<a class="xref" href="EchoHub.Client.Services.JoinOutcome.html">JoinOutcome</a>&gt;</dt>
<dd></dd>
</dl>