File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed
src/net45/Default/WampSharp.WebSocket4Net/WAMP2/V2/Fluent Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ protected IControlledWampConnection<TMessage> CreateTextConnection<TMessage>(IWa
6969 return new WebSocket4NetTextConnection < TMessage > ( ActivateWebSocket ( textBinding ) , textBinding ) ;
7070 }
7171
72- private WebSocket ActivateWebSocket < TMessage > ( IWampBinaryBinding < TMessage > binaryBinding )
72+ private WebSocket ActivateWebSocket ( IWampBinding binaryBinding )
7373 {
7474 WebSocket webSocket = mWebSocketFactory ( binaryBinding . Name ) ;
7575
@@ -80,17 +80,5 @@ private WebSocket ActivateWebSocket<TMessage>(IWampBinaryBinding<TMessage> binar
8080
8181 return webSocket ;
8282 }
83-
84- private WebSocket ActivateWebSocket < TMessage > ( IWampTextBinding < TMessage > textBinding )
85- {
86- WebSocket webSocket = mWebSocketFactory ( textBinding . Name ) ;
87-
88- if ( SecurityOptionsConfigureAction != null )
89- {
90- SecurityOptionsConfigureAction ( webSocket . Security ) ;
91- }
92-
93- return webSocket ;
94- }
9583 }
9684}
You can’t perform that action at this time.
0 commit comments