Modified ByteOrder enum values to PascalCase values

This commit is contained in:
sta
2014-02-28 17:17:44 +09:00
parent 2e853fca63
commit 46fc6f927f
9 changed files with 25 additions and 25 deletions

View File

@@ -466,7 +466,7 @@ namespace WebSocketSharp.Server
_listener.Stop ();
_services.Stop (
((ushort) CloseStatusCode.SERVER_ERROR).ToByteArrayInternally (ByteOrder.BIG), true);
((ushort) CloseStatusCode.SERVER_ERROR).ToByteArrayInternally (ByteOrder.Big), true);
_state = ServerState.Stop;
}