Fix due to the modified WsFrame.cs
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#region MIT License
|
||||
#region License
|
||||
/*
|
||||
* Opcode.cs
|
||||
*
|
||||
@@ -43,11 +43,11 @@ namespace WebSocketSharp {
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 0. Indicates a continuation frame.
|
||||
/// </summary>
|
||||
CONT = 0x0,
|
||||
CONT = 0x0,
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 1. Indicates a text frame.
|
||||
/// </summary>
|
||||
TEXT = 0x1,
|
||||
TEXT = 0x1,
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 2. Indicates a binary frame.
|
||||
/// </summary>
|
||||
@@ -55,14 +55,14 @@ namespace WebSocketSharp {
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 8. Indicates a connection close frame.
|
||||
/// </summary>
|
||||
CLOSE = 0x8,
|
||||
CLOSE = 0x8,
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 9. Indicates a ping frame.
|
||||
/// </summary>
|
||||
PING = 0x9,
|
||||
PING = 0x9,
|
||||
/// <summary>
|
||||
/// Equivalent to numeric value 10. Indicates a pong frame.
|
||||
/// </summary>
|
||||
PONG = 0xa
|
||||
PONG = 0xa
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user