WorkflowRuntimeServiceElementCollection.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 / cdf / src / WF / RunTime / Configuration / WorkflowRuntimeServiceElementCollection.cs / 1305376 / WorkflowRuntimeServiceElementCollection.cs

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

using System; 
using System.Configuration; 

 
namespace System.Workflow.Runtime.Configuration
{
    ///  Collection of WorkflowRuntimeServiceSettings used by WorkflowRuntimeSection 
    public class WorkflowRuntimeServiceElementCollection : ConfigurationElementCollection 
    {
        ///  Creates a new WorkflowRuntimeServiceSettings object  
        ///  An empty WorkflowRuntimeServiceSettings  
        protected override ConfigurationElement CreateNewElement()
        { 
            return new WorkflowRuntimeServiceElement();
        }

        ///  Returns the Type of the WorkflowRuntimeServiceSettings object  
        ///  The WorkflowRuntimeServiceSettings 
        ///  The Type name of the WorkflowRuntimeServiceSettings  
        protected override object GetElementKey(ConfigurationElement settings) 
        {
            return ((WorkflowRuntimeServiceElement)settings).Type; 
        }

        ///  Adds a WorkflowRuntimeServiceSettings object to this collection 
        ///  The settings object to add  
        public void Add(WorkflowRuntimeServiceElement serviceSettings)
        { 
            if (serviceSettings == null) 
                throw new ArgumentNullException("serviceSettings");
 
            base.BaseAdd(serviceSettings);
        }
    }
} 


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