EntityDataSourceValidationException.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 / DataWebControls / System / Data / WebControls / EntityDataSourceValidationException.cs / 1305376 / EntityDataSourceValidationException.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner objsdev 
//--------------------------------------------------------------------- 
using System;
using System.Collections.Generic; 
using System.Linq;
using System.Text;
using System.Web.DynamicData;
using System.Security.Permissions; 
using System.Runtime.Serialization;
 
namespace System.Web.UI.WebControls 
{
    [Serializable] 
    public sealed class EntityDataSourceValidationException : Exception, IDynamicValidatorException
    {
        private const string InnerExceptionsTag = "InnerExceptions";
        private readonly Dictionary _innerExceptions = new Dictionary(); 
        public EntityDataSourceValidationException()
            : base() 
        { 
        }
        public EntityDataSourceValidationException(string message) 
            : base(message)
        {
        }
        public EntityDataSourceValidationException(string message, Exception innerException) 
            : base(message, innerException)
        { 
        } 
        internal EntityDataSourceValidationException(string message, Dictionary innerExceptions)
            : base(message) 
        {
            _innerExceptions = innerExceptions;
        }
        private EntityDataSourceValidationException(SerializationInfo serializationInfo, StreamingContext streamingContext) 
            : base(serializationInfo, streamingContext)
        { 
            _innerExceptions = (Dictionary)serializationInfo.GetValue(InnerExceptionsTag, typeof(Dictionary)); 
        }
        IDictionary IDynamicValidatorException.InnerExceptions 
        {
            get { return _innerExceptions; }
        }
        [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] 
        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            base.GetObjectData(info, context); 
            info.AddValue(InnerExceptionsTag, _innerExceptions);
        } 
    }

}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner objsdev 
//--------------------------------------------------------------------- 
using System;
using System.Collections.Generic; 
using System.Linq;
using System.Text;
using System.Web.DynamicData;
using System.Security.Permissions; 
using System.Runtime.Serialization;
 
namespace System.Web.UI.WebControls 
{
    [Serializable] 
    public sealed class EntityDataSourceValidationException : Exception, IDynamicValidatorException
    {
        private const string InnerExceptionsTag = "InnerExceptions";
        private readonly Dictionary _innerExceptions = new Dictionary(); 
        public EntityDataSourceValidationException()
            : base() 
        { 
        }
        public EntityDataSourceValidationException(string message) 
            : base(message)
        {
        }
        public EntityDataSourceValidationException(string message, Exception innerException) 
            : base(message, innerException)
        { 
        } 
        internal EntityDataSourceValidationException(string message, Dictionary innerExceptions)
            : base(message) 
        {
            _innerExceptions = innerExceptions;
        }
        private EntityDataSourceValidationException(SerializationInfo serializationInfo, StreamingContext streamingContext) 
            : base(serializationInfo, streamingContext)
        { 
            _innerExceptions = (Dictionary)serializationInfo.GetValue(InnerExceptionsTag, typeof(Dictionary)); 
        }
        IDictionary IDynamicValidatorException.InnerExceptions 
        {
            get { return _innerExceptions; }
        }
        [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] 
        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            base.GetObjectData(info, context); 
            info.AddValue(InnerExceptionsTag, _innerExceptions);
        } 
    }

}

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