ResolveNameEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / ResolveNameEventArgs.cs / 1305376 / ResolveNameEventArgs.cs

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

namespace System.ComponentModel.Design.Serialization { 
 
    using System;
    using System.Security.Permissions; 

    /// 
    ///     EventArgs for the ResolveNameEventHandler.  This event is used
    ///     by the serialization process to match a name to an object 
    ///     instance.
    ///  
    [HostProtection(SharedState = true)] 
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name = "FullTrust")]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] 
    public class ResolveNameEventArgs : EventArgs {
        private string name;
        private object value;
 
        /// 
        ///     Creates a new resolve name event args object. 
        ///  
        public ResolveNameEventArgs(string name) {
            this.name = name; 
            this.value = null;
        }

        ///  
        ///     The name of the object that needs to be resolved.
        ///  
        public string Name { 
            get {
                return name; 
            }
        }

        ///  
        ///     The object that matches the name.
        ///  
        public object Value { 
            get {
                return value; 
            }
            set {
                this.value = value;
            } 
        }
    } 
} 


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