Modified Rsv enum values to PascalCase values

This commit is contained in:
sta
2014-03-01 15:24:03 +09:00
parent 4304310430
commit 69e057969b
2 changed files with 16 additions and 16 deletions

View File

@@ -4,8 +4,8 @@
*
* The MIT License
*
* Copyright (c) 2012-2013 sta.blockhead
*
* Copyright (c) 2012-2014 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
* in the Software without restriction, including without limitation the rights
@@ -15,7 +15,7 @@
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -28,11 +28,11 @@
using System;
namespace WebSocketSharp {
namespace WebSocketSharp
{
internal enum Rsv : byte
{
OFF = 0x0,
ON = 0x1
Off = 0x0,
On = 0x1
}
}