PropertyMappingExceptionEventArgs.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 / Orcas / NetFXw7 / wpf / src / WinFormsIntegration / System / Windows / Integration / PropertyMappingExceptionEventArgs.cs / 1 / PropertyMappingExceptionEventArgs.cs

                            using System.Diagnostics.CodeAnalysis; 
using System.Globalization;

namespace System.Windows.Forms.Integration
{ 
    /// 
    /// Enables the user to see the property that threw an exception, and to preview or cancel the exception. 
    ///  
    public class PropertyMappingExceptionEventArgs : IntegrationExceptionEventArgs
    { 
        private string _propertyName;
        private object _propertyValue;

        ///  
        /// Initializes a new instance of the PropertyMappingExceptionEventArgs class.
        ///  
        public PropertyMappingExceptionEventArgs(Exception exception, string propertyName, object propertyValue) 
            : base(false, exception)
        { 
            if (exception == null)
            {
                throw new ArgumentNullException(string.Format(CultureInfo.CurrentCulture, SR.Get(SRID.WFI_NullArgument), "exception"));
            } 
            if (string.IsNullOrEmpty(propertyName))
            { 
                throw new ArgumentNullException(string.Format(CultureInfo.CurrentCulture, SR.Get(SRID.WFI_ArgumentNullOrEmpty), "propertyName")); 
            }
            _propertyName = propertyName; 
            _propertyValue = propertyValue;
        }

        ///  
        /// Identifies the property that was being mapped when the exception occurred.
        ///  
        public string PropertyName 
        {
            get 
            {
                return _propertyName;
            }
        } 

        ///  
        /// Specifies the value of the property that was being mapped when the exception occurred. 
        /// 
        public object PropertyValue 
        {
            get
            {
                return _propertyValue; 
            }
        } 
 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System.Diagnostics.CodeAnalysis; 
using System.Globalization;

namespace System.Windows.Forms.Integration
{ 
    /// 
    /// Enables the user to see the property that threw an exception, and to preview or cancel the exception. 
    ///  
    public class PropertyMappingExceptionEventArgs : IntegrationExceptionEventArgs
    { 
        private string _propertyName;
        private object _propertyValue;

        ///  
        /// Initializes a new instance of the PropertyMappingExceptionEventArgs class.
        ///  
        public PropertyMappingExceptionEventArgs(Exception exception, string propertyName, object propertyValue) 
            : base(false, exception)
        { 
            if (exception == null)
            {
                throw new ArgumentNullException(string.Format(CultureInfo.CurrentCulture, SR.Get(SRID.WFI_NullArgument), "exception"));
            } 
            if (string.IsNullOrEmpty(propertyName))
            { 
                throw new ArgumentNullException(string.Format(CultureInfo.CurrentCulture, SR.Get(SRID.WFI_ArgumentNullOrEmpty), "propertyName")); 
            }
            _propertyName = propertyName; 
            _propertyValue = propertyValue;
        }

        ///  
        /// Identifies the property that was being mapped when the exception occurred.
        ///  
        public string PropertyName 
        {
            get 
            {
                return _propertyName;
            }
        } 

        ///  
        /// Specifies the value of the property that was being mapped when the exception occurred. 
        /// 
        public object PropertyValue 
        {
            get
            {
                return _propertyValue; 
            }
        } 
 
    }
} 

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

                        

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