-
Notifications
You must be signed in to change notification settings - Fork 10.4k
SignalR ConnectionToken/ConnectionAddress feature #13773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
254ec88
335c2dd
b85eeba
c802290
ba9cd32
54cb5ba
d544d21
0de5189
f5bb148
eb01ffe
deb2901
f6137d0
6b347a8
43c7bb3
d80bc8b
80d3089
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ public HttpConnectionContext(string connectionId, string connectionToken, ILogge | |
Features.Set<IConnectionInherentKeepAliveFeature>(this); | ||
} | ||
|
||
public HttpConnectionContext(string id, IDuplexPipe transport, IDuplexPipe application, ILogger logger = null) | ||
internal HttpConnectionContext(string id, IDuplexPipe transport, IDuplexPipe application, ILogger logger = null) | ||
: this(id, null, logger) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this only used for tests? If so, can we add a comment or something? Maybe make it internal. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we plan to bring this into 3.1 I don't think we can make it internal, but I agree that it should have been internal to start There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Internal class, make all the changes you want! |
||
{ | ||
Transport = transport; | ||
|
Uh oh!
There was an error while loading. Please reload this page.