We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fec8d0 commit 7db4044Copy full SHA for 7db4044
websocket-sharp/Server/WebSocketServiceHost.cs
@@ -150,7 +150,7 @@ public WebSocketSessionManager Sessions {
150
/// A <see cref="System.Type"/> that represents the type of the behavior of
151
/// the service.
152
/// </value>
153
- public abstract Type Type { get; }
+ public abstract Type BehaviorType { get; }
154
155
/// <summary>
156
/// Gets or sets the wait time for the response to the WebSocket Ping or Close.
websocket-sharp/Server/WebSocketServiceHost`1.cs
@@ -63,7 +63,7 @@ Logger log
63
64
#region Public Properties
65
66
- public override Type Type {
+ public override Type BehaviorType {
67
get {
68
return typeof (TBehavior);
69
}
0 commit comments