[Modify] Rename it

This commit is contained in:
sta 2017-02-24 16:40:29 +09:00
parent 4fec8d0c15
commit 7db40445d8
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ namespace WebSocketSharp.Server
/// A <see cref="System.Type"/> that represents the type of the behavior of
/// the service.
/// </value>
public abstract Type Type { get; }
public abstract Type BehaviorType { get; }
/// <summary>
/// Gets or sets the wait time for the response to the WebSocket Ping or Close.

View File

@ -63,7 +63,7 @@ namespace WebSocketSharp.Server
#region Public Properties
public override Type Type {
public override Type BehaviorType {
get {
return typeof (TBehavior);
}