mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 16:46:08 +02:00
deploy: ce41ef9c0a
This commit is contained in:
@@ -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 = "[encrypted — rejoin this channel with its passphrase to unlock]"</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<List<MessageDto>> JoinChannelAsync(string channelName)</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public Task<JoinOutcome> 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><<span class="xref">List</span><<a class="xref" href="https://github.com/HueByte/EchoHub/blob/master/src/EchoHub.Core/DTOs/ChatDtos.cs">MessageDto</a>>></dt>
|
||||
<dt><span class="xref">Task</span><<a class="xref" href="EchoHub.Client.Services.JoinOutcome.html">JoinOutcome</a>></dt>
|
||||
<dd></dd>
|
||||
</dl>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user