Refactored a few for WebSocketBehavior.cs

This commit is contained in:
sta 2015-07-28 15:07:41 +09:00
parent f99112fc2f
commit 0eec6595a6

View File

@ -35,7 +35,7 @@ namespace WebSocketSharp.Server
{ {
/// <summary> /// <summary>
/// Exposes the methods and properties used to define the behavior of a WebSocket service /// Exposes the methods and properties used to define the behavior of a WebSocket service
/// provided by the <see cref="HttpServer"/> or <see cref="WebSocketServer"/>. /// provided by the <see cref="WebSocketServer"/> or <see cref="HttpServer"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The WebSocketBehavior class is an abstract class. /// The WebSocketBehavior class is an abstract class.
@ -75,8 +75,8 @@ namespace WebSocketSharp.Server
/// Gets the logging functions. /// Gets the logging functions.
/// </summary> /// </summary>
/// <value> /// <value>
/// A <see cref="Logger"/> that provides the logging functions, or <see langword="null"/> /// A <see cref="Logger"/> that provides the logging functions,
/// if the WebSocket connection isn't established. /// or <see langword="null"/> if the WebSocket connection isn't established.
/// </value> /// </value>
protected Logger Log { protected Logger Log {
get { get {
@ -119,7 +119,7 @@ namespace WebSocketSharp.Server
/// a connection request to the WebSocket service. /// a connection request to the WebSocket service.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The delegate is called when the <see cref="WebSocket"/> used in the session validates /// This delegate is called when the <see cref="WebSocket"/> used in a session validates
/// the connection request. /// the connection request.
/// </remarks> /// </remarks>
/// <value> /// <value>
@ -187,8 +187,8 @@ namespace WebSocketSharp.Server
/// the Sec-WebSocket-Extensions header included in a connection request. /// the Sec-WebSocket-Extensions header included in a connection request.
/// </summary> /// </summary>
/// <value> /// <value>
/// <c>true</c> if the WebSocket service ignores the extensions; otherwise, <c>false</c>. /// <c>true</c> if the WebSocket service ignores the extensions;
/// The default value is <c>false</c>. /// otherwise, <c>false</c>. The default value is <c>false</c>.
/// </value> /// </value>
public bool IgnoreExtensions { public bool IgnoreExtensions {
get { get {
@ -205,7 +205,7 @@ namespace WebSocketSharp.Server
/// a connection request to the WebSocket service. /// a connection request to the WebSocket service.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The delegate is called when the <see cref="WebSocket"/> used in the session validates /// This delegate is called when the <see cref="WebSocket"/> used in a session validates
/// the connection request. /// the connection request.
/// </remarks> /// </remarks>
/// <value> /// <value>
@ -235,8 +235,8 @@ namespace WebSocketSharp.Server
/// Gets or sets the WebSocket subprotocol used in the WebSocket service. /// Gets or sets the WebSocket subprotocol used in the WebSocket service.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Set operation of this property is available before the WebSocket connection has been /// Set operation of this property is available before the WebSocket connection has
/// established. /// been established.
/// </remarks> /// </remarks>
/// <value> /// <value>
/// <para> /// <para>
@ -282,7 +282,7 @@ namespace WebSocketSharp.Server
/// </summary> /// </summary>
/// <value> /// <value>
/// One of the <see cref="WebSocketState"/> enum values, indicates the state of /// One of the <see cref="WebSocketState"/> enum values, indicates the state of
/// the <see cref="WebSocket"/> used in the session. /// the <see cref="WebSocket"/>.
/// </value> /// </value>
public WebSocketState State { public WebSocketState State {
get { get {