BindingCompleteEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / BindingCompleteEventArgs.cs / 1 / BindingCompleteEventArgs.cs

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

namespace System.Windows.Forms 
{ 
    using System;
    using System.ComponentModel; 

    /// 
    /// 
    ///     Provides information about a Binding Completed event. 
    /// 
    public class BindingCompleteEventArgs : CancelEventArgs { 
        private Binding binding; 
        private BindingCompleteState state;
        private BindingCompleteContext context; 
        private	string errorText;
        private	Exception exception;

        ///  
        /// 
        ///    Constructor for BindingCompleteEventArgs. 
        ///  
        public BindingCompleteEventArgs(Binding binding,
                                        BindingCompleteState state, 
                                        BindingCompleteContext context,
                                        string errorText,
                                        Exception exception,
                                        bool cancel) : base(cancel) { 
            this.binding = binding;
            this.state = state; 
            this.context = context; 
            this.errorText = (errorText == null) ? string.Empty : errorText;
            this.exception = exception; 
        }

        /// 
        ///  
        ///    Constructor for BindingCompleteEventArgs.
        ///  
        public BindingCompleteEventArgs(Binding binding, 
                                        BindingCompleteState state,
                                        BindingCompleteContext context, 
                                        string errorText,
                                        Exception exception) : this(binding, state, context, errorText, exception, true) {
        }
 
        /// 
        ///  
        ///    Constructor for BindingCompleteEventArgs. 
        /// 
        public BindingCompleteEventArgs(Binding binding, 
                                        BindingCompleteState state,
                                        BindingCompleteContext context,
                                        string errorText) : this(binding, state, context, errorText, null, true) {
        } 

        ///  
        ///  
        ///    Constructor for BindingCompleteEventArgs.
        ///  
        public BindingCompleteEventArgs(Binding binding,
                                        BindingCompleteState state,
                                        BindingCompleteContext context) : this(binding, state, context, string.Empty, null, false) {
        } 

        ///  
        ///  
        /// 
        public Binding Binding { 
            get {
                return this.binding;
            }
        } 

        ///  
        ///  
        /// 
        public BindingCompleteState BindingCompleteState { 
            get {
                return this.state;
            }
        } 

        ///  
        ///  
        /// 
        public BindingCompleteContext BindingCompleteContext { 
            get {
                return this.context;
            }
        } 

        ///  
        ///  
        /// 
        public string ErrorText { 
            get {
                return this.errorText;
            }
        } 

        ///  
        ///  
        /// 
        public Exception Exception 
        {
            get {
                return this.exception;
            } 
        }
    } 
} 

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

namespace System.Windows.Forms 
{ 
    using System;
    using System.ComponentModel; 

    /// 
    /// 
    ///     Provides information about a Binding Completed event. 
    /// 
    public class BindingCompleteEventArgs : CancelEventArgs { 
        private Binding binding; 
        private BindingCompleteState state;
        private BindingCompleteContext context; 
        private	string errorText;
        private	Exception exception;

        ///  
        /// 
        ///    Constructor for BindingCompleteEventArgs. 
        ///  
        public BindingCompleteEventArgs(Binding binding,
                                        BindingCompleteState state, 
                                        BindingCompleteContext context,
                                        string errorText,
                                        Exception exception,
                                        bool cancel) : base(cancel) { 
            this.binding = binding;
            this.state = state; 
            this.context = context; 
            this.errorText = (errorText == null) ? string.Empty : errorText;
            this.exception = exception; 
        }

        /// 
        ///  
        ///    Constructor for BindingCompleteEventArgs.
        ///  
        public BindingCompleteEventArgs(Binding binding, 
                                        BindingCompleteState state,
                                        BindingCompleteContext context, 
                                        string errorText,
                                        Exception exception) : this(binding, state, context, errorText, exception, true) {
        }
 
        /// 
        ///  
        ///    Constructor for BindingCompleteEventArgs. 
        /// 
        public BindingCompleteEventArgs(Binding binding, 
                                        BindingCompleteState state,
                                        BindingCompleteContext context,
                                        string errorText) : this(binding, state, context, errorText, null, true) {
        } 

        ///  
        ///  
        ///    Constructor for BindingCompleteEventArgs.
        ///  
        public BindingCompleteEventArgs(Binding binding,
                                        BindingCompleteState state,
                                        BindingCompleteContext context) : this(binding, state, context, string.Empty, null, false) {
        } 

        ///  
        ///  
        /// 
        public Binding Binding { 
            get {
                return this.binding;
            }
        } 

        ///  
        ///  
        /// 
        public BindingCompleteState BindingCompleteState { 
            get {
                return this.state;
            }
        } 

        ///  
        ///  
        /// 
        public BindingCompleteContext BindingCompleteContext { 
            get {
                return this.context;
            }
        } 

        ///  
        ///  
        /// 
        public string ErrorText { 
            get {
                return this.errorText;
            }
        } 

        ///  
        ///  
        /// 
        public Exception Exception 
        {
            get {
                return this.exception;
            } 
        }
    } 
} 

// 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