diff --git a/websocket-sharp/Rsv.cs b/websocket-sharp/Rsv.cs
index 993ea91b..577435a2 100644
--- a/websocket-sharp/Rsv.cs
+++ b/websocket-sharp/Rsv.cs
@@ -4,7 +4,7 @@
*
* The MIT License
*
- * Copyright (c) 2012-2014 sta.blockhead
+ * Copyright (c) 2012-2015 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
@@ -30,9 +30,22 @@ using System;
namespace WebSocketSharp
{
+ ///
+ /// Contains the values used in the RSVs (RSV1, RSV2, and RSV3) of a WebSocket frame.
+ ///
+ ///
+ /// The values of this enumeration are defined in
+ /// Section 5.2 of RFC 6455.
+ ///
internal enum Rsv : byte
{
+ ///
+ /// Equivalent to numeric value 0. Indicates zero.
+ ///
Off = 0x0,
+ ///
+ /// Equivalent to numeric value 1. Indicates non-zero.
+ ///
On = 0x1
}
}