Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release-notes/7.0/preview/api-diff/preview6/Microsoft.AspNetCore.App/7.0-preview6_Microsoft.AspNetCore.SignalR.md')
-rw-r--r--release-notes/7.0/preview/api-diff/preview6/Microsoft.AspNetCore.App/7.0-preview6_Microsoft.AspNetCore.SignalR.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/release-notes/7.0/preview/api-diff/preview6/Microsoft.AspNetCore.App/7.0-preview6_Microsoft.AspNetCore.SignalR.md b/release-notes/7.0/preview/api-diff/preview6/Microsoft.AspNetCore.App/7.0-preview6_Microsoft.AspNetCore.SignalR.md
new file mode 100644
index 00000000..8abb99bb
--- /dev/null
+++ b/release-notes/7.0/preview/api-diff/preview6/Microsoft.AspNetCore.App/7.0-preview6_Microsoft.AspNetCore.SignalR.md
@@ -0,0 +1,19 @@
+# Microsoft.AspNetCore.SignalR
+
+``` diff
+ namespace Microsoft.AspNetCore.SignalR {
+ public interface IHubCallerClients : IHubCallerClients<IClientProxy>, IHubClients<IClientProxy> {
++ new ISingleClientProxy Caller { get; }
++ new ISingleClientProxy Client(string connectionId);
+- new ISingleClientProxy Single(string connectionId);
+ }
+ public interface IHubClients : IHubClients<IClientProxy> {
++ new ISingleClientProxy Client(string connectionId);
+- new ISingleClientProxy Single(string connectionId);
+ }
+ public interface IHubClients<T> {
+- T Single(string connectionId);
+ }
+ }
+```
+