diff --git a/websocket-sharp/MessageEventArgs.cs b/websocket-sharp/MessageEventArgs.cs index d81c0d93..3c399a53 100644 --- a/websocket-sharp/MessageEventArgs.cs +++ b/websocket-sharp/MessageEventArgs.cs @@ -73,6 +73,23 @@ namespace WebSocketSharp #endregion + #region Internal Properties + + /// + /// Gets the opcode for the message. + /// + /// + /// , , + /// or . + /// + internal Opcode Opcode { + get { + return _opcode; + } + } + + #endregion + #region Public Properties /// @@ -144,19 +161,6 @@ namespace WebSocketSharp } } - /// - /// Gets the message type. - /// - /// - /// , , or . - /// - [Obsolete ("This property will be removed. Use any of the Is properties instead.")] - public Opcode Type { - get { - return _opcode; - } - } - #endregion } }