Merge pull request #3422 from xmcclure/tarjan-doublefan
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlNotificationSource.cs
index 276413dda56771d1d37c662f13f13d6232bcc5b0..7bf6e6043e39c92b9281c619d2909f865f8ec371 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Data.SqlClient
 {
        /// <summary>
        /// Indicates the source of the notification received by the dependency event handler
        /// </summary>
-       [Serializable]
-       public enum SqlNotificationSource {
-
+       public enum SqlNotificationSource
+       {
+               Client = -2,
                Data = 0,
                Database = 3,
                Environment = 6,
                Execution = 7,
                Object = 2,
+               Owner = 8,
                Statement = 5,
                System = 4,
-               Timeout = 1
-
+               Timeout = 1,
+               Unknown = -1,
        }
-
 }
-
-#endif
-
-