[Modify] Polish it

This commit is contained in:
sta 2015-10-30 16:49:17 +09:00
parent adefc5fe43
commit 4706c80282

View File

@ -4,7 +4,7 @@
* *
* The MIT License * The MIT License
* *
* Copyright (c) 2013-2014 sta.blockhead * Copyright (c) 2013-2015 sta.blockhead
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal * of this software and associated documentation files (the "Software"), to deal
@ -31,22 +31,21 @@ using System;
namespace WebSocketSharp namespace WebSocketSharp
{ {
/// <summary> /// <summary>
/// Contains the values of the compression method used to compress the message on the WebSocket /// Specifies the compression method used to compress a message on the WebSocket connection.
/// connection.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// The values of the compression method are defined in /// The compression methods are defined in
/// <see href="http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-09">Compression /// <see href="http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-19">
/// Extensions for WebSocket</see>. /// Compression Extensions for WebSocket</see>.
/// </remarks> /// </remarks>
public enum CompressionMethod : byte public enum CompressionMethod : byte
{ {
/// <summary> /// <summary>
/// Indicates non compression. /// Specifies non compression.
/// </summary> /// </summary>
None, None,
/// <summary> /// <summary>
/// Indicates using DEFLATE. /// Specifies DEFLATE.
/// </summary> /// </summary>
Deflate Deflate
} }