Modified some xml doc comments

This commit is contained in:
sta 2014-03-08 17:19:47 +09:00
parent 048627b4f9
commit 7cf64e4d49
3 changed files with 14 additions and 11 deletions

View File

@ -34,7 +34,7 @@ using System.Security.Principal;
namespace WebSocketSharp.Net.WebSockets namespace WebSocketSharp.Net.WebSockets
{ {
/// <summary> /// <summary>
/// Provides the properties used for accessing the information in a WebSocket connection request /// Provides the properties used to access the information in a WebSocket connection request
/// received by the <see cref="HttpListener"/>. /// received by the <see cref="HttpListener"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
@ -44,8 +44,8 @@ namespace WebSocketSharp.Net.WebSockets
#region Private Fields #region Private Fields
private HttpListenerContext _context; private HttpListenerContext _context;
private WebSocket _websocket;
private WsStream _stream; private WsStream _stream;
private WebSocket _websocket;
#endregion #endregion
@ -227,8 +227,9 @@ namespace WebSocketSharp.Net.WebSockets
/// This property represents the subprotocols requested by the client. /// This property represents the subprotocols requested by the client.
/// </remarks> /// </remarks>
/// <value> /// <value>
/// An IEnumerable&lt;string&gt; instance that provides an enumerator which supports the /// An <see cref="T:System.Collections.Generic.IEnumerable{string}"/> instance that provides
/// iteration over the values of the Sec-WebSocket-Protocol header. /// an enumerator which supports the iteration over the values of the Sec-WebSocket-Protocol
/// header.
/// </value> /// </value>
public override IEnumerable<string> SecWebSocketProtocols { public override IEnumerable<string> SecWebSocketProtocols {
get { get {

View File

@ -36,7 +36,7 @@ using System.Security.Principal;
namespace WebSocketSharp.Net.WebSockets namespace WebSocketSharp.Net.WebSockets
{ {
/// <summary> /// <summary>
/// Provides the properties used for accessing the information in a WebSocket connection request /// Provides the properties used to access the information in a WebSocket connection request
/// received by the <see cref="TcpListener"/>. /// received by the <see cref="TcpListener"/>.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
@ -45,8 +45,8 @@ namespace WebSocketSharp.Net.WebSockets
{ {
#region Private Fields #region Private Fields
private CookieCollection _cookies;
private TcpClient _client; private TcpClient _client;
private CookieCollection _cookies;
private HandshakeRequest _request; private HandshakeRequest _request;
private bool _secure; private bool _secure;
private WsStream _stream; private WsStream _stream;
@ -239,8 +239,9 @@ namespace WebSocketSharp.Net.WebSockets
/// This property represents the subprotocols requested by the client. /// This property represents the subprotocols requested by the client.
/// </remarks> /// </remarks>
/// <value> /// <value>
/// An IEnumerable&lt;string&gt; instance that provides an enumerator which supports the /// An <see cref="T:System.Collections.Generic.IEnumerable{string}"/> instance that provides
/// iteration over the values of the Sec-WebSocket-Protocol header. /// an enumerator which supports the iteration over the values of the Sec-WebSocket-Protocol
/// header.
/// </value> /// </value>
public override IEnumerable<string> SecWebSocketProtocols { public override IEnumerable<string> SecWebSocketProtocols {
get { get {

View File

@ -34,7 +34,7 @@ using System.Security.Principal;
namespace WebSocketSharp.Net.WebSockets namespace WebSocketSharp.Net.WebSockets
{ {
/// <summary> /// <summary>
/// Exposes the properties used for accessing the information in a WebSocket connection request. /// Exposes the properties used to access the information in a WebSocket connection request.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The WebSocketContext class is an abstract class. /// The WebSocketContext class is an abstract class.
@ -161,8 +161,9 @@ namespace WebSocketSharp.Net.WebSockets
/// This property represents the subprotocols requested by the client. /// This property represents the subprotocols requested by the client.
/// </remarks> /// </remarks>
/// <value> /// <value>
/// An IEnumerable&lt;string&gt; instance that provides an enumerator which supports the /// An <see cref="T:System.Collections.Generic.IEnumerable{string}"/> instance that provides
/// iteration over the values of the Sec-WebSocket-Protocol header. /// an enumerator which supports the iteration over the values of the Sec-WebSocket-Protocol
/// header.
/// </value> /// </value>
public abstract IEnumerable<string> SecWebSocketProtocols { get; } public abstract IEnumerable<string> SecWebSocketProtocols { get; }