ConstructorArgumentAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Base / System / Windows / Markup / ConstructorArgumentAttribute.cs / 1 / ConstructorArgumentAttribute.cs

                            //------------------------------------------------------------------------ 
//
//  Microsoft Windows Client Platform
//  Copyright (C) Microsoft Corporation, 2005
// 
//  File:      ConstructorArgumentAttribute.cs
// 
//  Contents:  An attribute to declare that this property can be 
//             initialized using the classes constructor of the name
//             provided. 
//
//  Created:   05/06/2005 [....]
//
//----------------------------------------------------------------------- 

using System; 
 
namespace System.Windows.Markup
{ 

    /// 
    /// Attribute to declare that this associated property can be initialized by a
    /// constructor parameter and should be ignored for serialization if the constructor 
    /// with an argument of the supplied name is used to construct the instance.
    ///  
    [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] 
    public sealed class ConstructorArgumentAttribute : Attribute
    { 
        /// 
        /// Constructor for an ConstructorArgumentAttribute
        /// 
        /// Name of the constructor argument that will initialize this property 
        public ConstructorArgumentAttribute(string argumentName)
        { 
            _argumentName = argumentName; 
        }
 
        /// 
        /// Name of the constructor argument that will initialize this property
        /// 
        public string ArgumentName 
        {
            get { return _argumentName; } 
        } 

        private string _argumentName; 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------ 
//
//  Microsoft Windows Client Platform
//  Copyright (C) Microsoft Corporation, 2005
// 
//  File:      ConstructorArgumentAttribute.cs
// 
//  Contents:  An attribute to declare that this property can be 
//             initialized using the classes constructor of the name
//             provided. 
//
//  Created:   05/06/2005 [....]
//
//----------------------------------------------------------------------- 

using System; 
 
namespace System.Windows.Markup
{ 

    /// 
    /// Attribute to declare that this associated property can be initialized by a
    /// constructor parameter and should be ignored for serialization if the constructor 
    /// with an argument of the supplied name is used to construct the instance.
    ///  
    [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] 
    public sealed class ConstructorArgumentAttribute : Attribute
    { 
        /// 
        /// Constructor for an ConstructorArgumentAttribute
        /// 
        /// Name of the constructor argument that will initialize this property 
        public ConstructorArgumentAttribute(string argumentName)
        { 
            _argumentName = argumentName; 
        }
 
        /// 
        /// Name of the constructor argument that will initialize this property
        /// 
        public string ArgumentName 
        {
            get { return _argumentName; } 
        } 

        private string _argumentName; 
    }
}

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