ActionItem.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / Tools / xws_reg / ActionItem.cs / 1 / ActionItem.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace Microsoft.Tools.ServiceModel
{ 
    using System;
    using System.ServiceModel.Install; 
 
    internal class ActionItem
    { 
        ServiceModelInstallComponent component;
        InstallAction action;
        OutputLevel outputLevel;
 
        internal ActionItem(ServiceModelInstallComponent component, InstallAction action, OutputLevel outputLevel)
        { 
            this.component = component; 
            this.action = action;
            this.outputLevel = outputLevel; 
        }

        internal ServiceModelInstallComponent Component
        { 
            get { return this.component; }
        } 
 
        internal InstallAction Action
        { 
            get { return this.action; }
        }

        internal OutputLevel OutputLevel 
        {
            get { return this.outputLevel; } 
        } 
    }
} 

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