SqlNotificationEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / SqlClient / SqlNotificationEventArgs.cs / 1305376 / SqlNotificationEventArgs.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
// [....]
// [....] 
//----------------------------------------------------------------------------- 

namespace System.Data.SqlClient { 
    using System;
    using System.ComponentModel;
    using System.Collections;
    using System.Data; 

 public class SqlNotificationEventArgs : EventArgs { 
        private SqlNotificationType _type; 
        private SqlNotificationInfo _info;
        private SqlNotificationSource _source; 

        public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) {
            _info = info;
            _source = source; 
            _type = type;
        } 
 
        public SqlNotificationType Type {
            get { 
                return _type;
            }
        }
 
        public SqlNotificationInfo Info {
            get { 
                return _info; 
            }
        } 

        public SqlNotificationSource Source {
            get {
                return _source; 
            }
        } 
 
        internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);
    } 
}



// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
// [....]
// [....] 
//----------------------------------------------------------------------------- 

namespace System.Data.SqlClient { 
    using System;
    using System.ComponentModel;
    using System.Collections;
    using System.Data; 

 public class SqlNotificationEventArgs : EventArgs { 
        private SqlNotificationType _type; 
        private SqlNotificationInfo _info;
        private SqlNotificationSource _source; 

        public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) {
            _info = info;
            _source = source; 
            _type = type;
        } 
 
        public SqlNotificationType Type {
            get { 
                return _type;
            }
        }
 
        public SqlNotificationInfo Info {
            get { 
                return _info; 
            }
        } 

        public SqlNotificationSource Source {
            get {
                return _source; 
            }
        } 
 
        internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);
    } 
}



// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK