Modified some xml doc comments

This commit is contained in:
sta 2014-03-09 17:03:13 +09:00
parent 898ccfced6
commit fd57782d69
2 changed files with 6 additions and 9 deletions

View File

@ -32,19 +32,17 @@ using WebSocketSharp.Net.WebSockets;
namespace WebSocketSharp.Server namespace WebSocketSharp.Server
{ {
/// <summary> /// <summary>
/// Exposes the properties used for accessing the information in a session in a WebSocket /// Exposes the properties used to access the information in a session in a WebSocket service.
/// service.
/// </summary> /// </summary>
public interface IWebSocketSession public interface IWebSocketSession
{ {
#region Properties #region Properties
/// <summary> /// <summary>
/// Gets the information in the WebSocket connection request. /// Gets the information in the connection request to the WebSocket service.
/// </summary> /// </summary>
/// <value> /// <value>
/// A <see cref="WebSocketContext"/> that provides the access to the WebSocket connection /// A <see cref="WebSocketContext"/> that provides the access to the connection request.
/// request.
/// </value> /// </value>
WebSocketContext Context { get; } WebSocketContext Context { get; }

View File

@ -34,7 +34,7 @@ using WebSocketSharp.Net.WebSockets;
namespace WebSocketSharp.Server namespace WebSocketSharp.Server
{ {
/// <summary> /// <summary>
/// Exposes the methods and properties for a WebSocket service provided by the /// Exposes a set of the methods and properties for a WebSocket service provided by the
/// <see cref="HttpServer"/> or <see cref="WebSocketServer"/>. /// <see cref="HttpServer"/> or <see cref="WebSocketServer"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
@ -106,11 +106,10 @@ namespace WebSocketSharp.Server
#region Public Properties #region Public Properties
/// <summary> /// <summary>
/// Gets the information in the WebSocket connection request. /// Gets the information in the current connection request to the WebSocket service.
/// </summary> /// </summary>
/// <value> /// <value>
/// A <see cref="WebSocketContext"/> that provides the access to the WebSocket connection /// A <see cref="WebSocketContext"/> that provides the access to the current connection request.
/// request.
/// </value> /// </value>
public WebSocketContext Context { public WebSocketContext Context {
get { get {