QualificationDataAttribute.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 / AddIn / Contract / System / AddIn / Contract / QualificationDataAttribute.cs / 1305376 / QualificationDataAttribute.cs

                            /// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Purpose: Attribute on any pipeline component for use in qualification. 
**
===========================================================*/ 

using System;

namespace System.AddIn.Pipeline 
{
    [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class, AllowMultiple = true)] 
    public sealed class QualificationDataAttribute : Attribute 
    {
        private String m_name; 
        private String m_value;

        public QualificationDataAttribute(String name, String value)
        { 
            m_name = name;
            m_value = value; 
        } 

        public String Name 
        {
            get { return m_name; }
        }
 
        public String Value
        { 
            get { return m_value; } 
        }
    } 
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
/// ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** Purpose: Attribute on any pipeline component for use in qualification. 
**
===========================================================*/ 

using System;

namespace System.AddIn.Pipeline 
{
    [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class, AllowMultiple = true)] 
    public sealed class QualificationDataAttribute : Attribute 
    {
        private String m_name; 
        private String m_value;

        public QualificationDataAttribute(String name, String value)
        { 
            m_name = name;
            m_value = value; 
        } 

        public String Name 
        {
            get { return m_name; }
        }
 
        public String Value
        { 
            get { return m_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