ResourceReferenceKeyNotFoundException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / ResourceReferenceKeyNotFoundException.cs / 1305600 / ResourceReferenceKeyNotFoundException.cs

                            //---------------------------------------------------------------------------- 
//
// File: ResourceReferenceExpression.cs
//
// Description: 
//   A resource could not be found
// 
// Copyright (C) 2005 by Microsoft Corporation.  All rights reserved. 
//
//--------------------------------------------------------------------------- 

using System;
using System.Runtime.Serialization;
using System.Security; 
using System.Security.Permissions;
 
namespace System.Windows 
{
    ///Exception class for resource reference 
    [Serializable]
    public class ResourceReferenceKeyNotFoundException: InvalidOperationException
    {
        /// 
        /// Constructor
        /// 
        public ResourceReferenceKeyNotFoundException() 
        {
            _resourceKey = null; 
        }

        ///
        /// Constructor 
        ///
        public ResourceReferenceKeyNotFoundException(string message, object resourceKey) 
                        : base(message) 
        {
            _resourceKey = resourceKey; 
        }

        ///
        /// Constructor (required for Xml web service) 
        ///
        protected  ResourceReferenceKeyNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) 
        { 
            _resourceKey = info.GetValue("Key", typeof(object));
        } 

        ///
        /// LineNumber that the exception occured on.
        /// 
        public object Key
        { 
            get { return _resourceKey; } 
        }
 

        /// 
        /// Populates a SerializationInfo with the data needed to serialize the target object.
        ///  
        /// 
        /// The SerializationInfo to populate with data. 
        ///  
        /// 
        /// The destination for this serialization. 
        /// 
        ///
        ///     Critical: calls Exception.GetObjectData which LinkDemands
        ///     PublicOK: a demand exists here 
        ///
        [SecurityCritical] 
        [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] 
        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            base.GetObjectData(info, context);
            info.AddValue("Key", _resourceKey);
        }
 
        private object _resourceKey;
    } 
 

} 



// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// File: ResourceReferenceExpression.cs
//
// Description: 
//   A resource could not be found
// 
// Copyright (C) 2005 by Microsoft Corporation.  All rights reserved. 
//
//--------------------------------------------------------------------------- 

using System;
using System.Runtime.Serialization;
using System.Security; 
using System.Security.Permissions;
 
namespace System.Windows 
{
    ///Exception class for resource reference 
    [Serializable]
    public class ResourceReferenceKeyNotFoundException: InvalidOperationException
    {
        /// 
        /// Constructor
        /// 
        public ResourceReferenceKeyNotFoundException() 
        {
            _resourceKey = null; 
        }

        ///
        /// Constructor 
        ///
        public ResourceReferenceKeyNotFoundException(string message, object resourceKey) 
                        : base(message) 
        {
            _resourceKey = resourceKey; 
        }

        ///
        /// Constructor (required for Xml web service) 
        ///
        protected  ResourceReferenceKeyNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) 
        { 
            _resourceKey = info.GetValue("Key", typeof(object));
        } 

        ///
        /// LineNumber that the exception occured on.
        /// 
        public object Key
        { 
            get { return _resourceKey; } 
        }
 

        /// 
        /// Populates a SerializationInfo with the data needed to serialize the target object.
        ///  
        /// 
        /// The SerializationInfo to populate with data. 
        ///  
        /// 
        /// The destination for this serialization. 
        /// 
        ///
        ///     Critical: calls Exception.GetObjectData which LinkDemands
        ///     PublicOK: a demand exists here 
        ///
        [SecurityCritical] 
        [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] 
        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        { 
            base.GetObjectData(info, context);
            info.AddValue("Key", _resourceKey);
        }
 
        private object _resourceKey;
    } 
 

} 



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