Merge pull request #2675 from lambdageek/dev/monoerror-mono_string_intern
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlNotificationType.cs
index 918c062425433389bd390251448a6ab24dce422a..e3db2f2ee0bb9cca0ffd47d6d93d3d76756be59b 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Data.SqlClient
 {
        /// <summary>
        /// Describes the differnt notification types that can be received by the dependency
        /// event handler.
        /// </summary>
-       public enum SqlNotificationType {
-
+       public enum SqlNotificationType
+       {
                Change = 0,
-               Subscribe = 1
-
+               Subscribe = 1,
+               Unknown = -1
        }
-
 }
-
-#endif
-
-