Fix a few words

This commit is contained in:
sta
2013-05-07 02:19:31 +09:00
parent 3ec3bf8fc9
commit 9a3c6632de
24 changed files with 108 additions and 108 deletions

View File

@@ -1,10 +1,10 @@
#region MIT License
#region License
/*
* SslStream.cs
*
* The MIT License
*
* Copyright (c) 2012 sta.blockhead
* Copyright (c) 2012-2013 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -34,7 +34,7 @@ namespace WebSocketSharp.Net.Security {
internal class SslStream : System.Net.Security.SslStream
{
#region Constructors
#region Public Constructors
public SslStream(NetworkStream innerStream)
: base(innerStream)
@@ -70,7 +70,7 @@ namespace WebSocketSharp.Net.Security {
#endregion
#region Property
#region Public Properties
public bool DataAvailable {
get {

View File

@@ -1,4 +1,4 @@
#region MIT License
#region License
/*
* HttpListenerWebSocketContext.cs
*
@@ -40,7 +40,7 @@ namespace WebSocketSharp.Net.WebSockets {
/// </remarks>
public class HttpListenerWebSocketContext : WebSocketContext
{
#region Fields
#region Private Fields
private HttpListenerContext _context;
private WebSocket _websocket;
@@ -48,7 +48,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Constructor
#region Internal Constructors
internal HttpListenerWebSocketContext(HttpListenerContext context)
{
@@ -59,7 +59,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Internal Property
#region Internal Properties
internal WsStream Stream {
get {
@@ -290,7 +290,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Internal Method
#region Internal Methods
internal void Close()
{

View File

@@ -1,4 +1,4 @@
#region MIT License
#region License
/*
* TcpListenerWebSocketContext.cs
*
@@ -41,7 +41,7 @@ namespace WebSocketSharp.Net.WebSockets {
/// </remarks>
public class TcpListenerWebSocketContext : WebSocketContext
{
#region Fields
#region Private Fields
private CookieCollection _cookies;
private TcpClient _tcpClient;
@@ -52,7 +52,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Constructor
#region Internal Constructors
internal TcpListenerWebSocketContext(TcpClient tcpClient, bool secure)
{
@@ -305,7 +305,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Internal Method
#region Internal Methods
internal void Close()
{

View File

@@ -1,4 +1,4 @@
#region MIT License
#region License
/*
* WebSocketContext.cs
*
@@ -41,7 +41,7 @@ namespace WebSocketSharp.Net.WebSockets {
/// </remarks>
public abstract class WebSocketContext {
#region Constructor
#region Protected Constructors
/// <summary>
/// Initializes a new instance of the <see cref="WebSocketSharp.Net.WebSockets.WebSocketContext"/> class.
@@ -52,7 +52,7 @@ namespace WebSocketSharp.Net.WebSockets {
#endregion
#region Properties
#region Public Properties
/// <summary>
/// Gets the cookies used in the WebSocket opening handshake.