[System]: Disallow "https" proxies in ServicePointManager.FindServicePoint().
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlNotificationInfo.cs
index 83de281c95da2d8e36de09a1746731d7bf84a9fa..d59de9a5ccc599910d0dce3f505a6f3ce0afffc8 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Data.SqlClient
 {
        /// <summary>
        /// Provides additional infoatmion about the different notifications that can be 
        /// received by the dependency event handler
        /// </summary>
-       [Serializable]
-       public enum SqlNotificationInfo {
-
+       public enum SqlNotificationInfo
+       {
+               AlreadyChanged = -2,
                Alter = 5,
                Delete = 3,
                Drop = 4,
                Error = 7,
+               Expired = 12,
                Insert = 1,
                Invalid = 9,
                Isolation = 11,
                Options = 10,
+               PreviousFire = 14,
                Query = 8,
+               Resource = 13,
                Restart = 6,
+               TemplateLimit = 15,
                Truncate = 0,
+               Unknown = -1,
                Update = 2
-
        }
-
 }
-
-
-#endif
-