@@ -530,9 +601,11 @@ Class ChatListSource
-
+
Returns the underlying data source as an System.Collections.IList.
+
@@ -564,7 +642,8 @@ Class ChatListSource
-
+
Raised when items are added, removed, moved, or the entire collection is refreshed.
+
@@ -607,6 +692,11 @@ Class ChatListSource
-
public ConnectDialogResult(string ServerUrl, string Username, string Password, bool IsRegister)
+
public ConnectDialogResult(string ServerUrl, string Username, string Password, bool IsRegister, bool RememberMe, string? SavedRefreshToken)
Parameters
@@ -206,6 +206,10 @@ Class ConnectDialogResult
+
RememberMe bool
+
+
SavedRefreshToken string
+
@@ -316,6 +320,68 @@ Class ConnectDialogResult
+
+
+ RememberMe
+
+
+
+
+
+
+
+
public bool RememberMe { get; init; }
+
+
+
+
+
+
+
Property Value
+
+ - bool
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SavedRefreshToken
+
+
+
+
+
+
+
+
public string? SavedRefreshToken { get; init; }
+
+
+
+
+
+
+
Property Value
+
+ - string
+
+
+
+
+
+
+
+
+
+
@@ -384,8 +450,8 @@ Class ConnectDialogResult
-
- Deconstruct(out string, out string, out string, out bool)
+
+ Deconstruct(out string, out string, out string, out bool, out bool, out string?)
@@ -393,7 +459,7 @@ Class ConnectDialogResult
-
public void Deconstruct(out string ServerUrl, out string Username, out string Password, out bool IsRegister)
+
public void Deconstruct(out string ServerUrl, out string Username, out string Password, out bool IsRegister, out bool RememberMe, out string? SavedRefreshToken)
Parameters
@@ -406,6 +472,10 @@ Class ConnectDialogResult
+
RememberMe bool
+
+
SavedRefreshToken string
+
diff --git a/api/client/EchoHub.Client.UI.CreateChannelDialog.html b/api/client/EchoHub.Client.UI.CreateChannelDialog.html
index 447c83f..19f60ed 100644
--- a/api/client/EchoHub.Client.UI.CreateChannelDialog.html
+++ b/api/client/EchoHub.Client.UI.CreateChannelDialog.html
@@ -195,7 +195,7 @@ Class CreateChannelDialog