Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / BuildProviderCollection.cs / 1305376 / BuildProviderCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.Compilation; using System.Reflection; using System.Web.Hosting; using System.Web.UI; using System.CodeDom.Compiler; using System.Web.Util; using System.ComponentModel; using System.Security.Permissions; // class CompilationSection [ConfigurationCollection(typeof(BuildProvider))] public sealed class BuildProviderCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static BuildProviderCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } public BuildProviderCollection() : base(StringComparer.OrdinalIgnoreCase) { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public new BuildProvider this[string name] { get { return (BuildProvider)BaseGet(name); } } public BuildProvider this[int index] { get { return (BuildProvider)BaseGet(index); } set { if (BaseGet(index) != null) BaseRemoveAt(index); BaseAdd(index, value); } } public void Add(BuildProvider buildProvider) { BaseAdd(buildProvider); } public void Remove(String name) { BaseRemove(name); } public void RemoveAt(int index) { BaseRemoveAt(index); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new BuildProvider(); } protected override Object GetElementKey(ConfigurationElement element) { return ((BuildProvider)element).Extension; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StylusTip.cs
- HostDesigntimeLicenseContext.cs
- DocumentPage.cs
- UnicastIPAddressInformationCollection.cs
- PermissionToken.cs
- ScalarType.cs
- JavascriptCallbackMessageInspector.cs
- WebPartHelpVerb.cs
- AsyncResult.cs
- WsdlBuildProvider.cs
- CustomErrorsSection.cs
- DataRecordInternal.cs
- FileNotFoundException.cs
- BuildResultCache.cs
- PointF.cs
- DetailsViewRowCollection.cs
- TdsParserStaticMethods.cs
- OverflowException.cs
- SQLMoney.cs
- NameValueFileSectionHandler.cs
- SystemParameters.cs
- StrokeNode.cs
- InvalidateEvent.cs
- Point.cs
- LocalTransaction.cs
- MeshGeometry3D.cs
- StaticContext.cs
- IndentedWriter.cs
- IssuanceLicense.cs
- HTTPNotFoundHandler.cs
- HttpModule.cs
- DirectionalLight.cs
- OracleConnection.cs
- SqlDataSourceStatusEventArgs.cs
- XmlNodeReader.cs
- _SSPIWrapper.cs
- FlowPosition.cs
- MethodExpression.cs
- RecognizerStateChangedEventArgs.cs
- Byte.cs
- Vector3DCollection.cs
- TimelineClockCollection.cs
- _LocalDataStoreMgr.cs
- ScrollPattern.cs
- NCryptNative.cs
- PartialCachingControl.cs
- SqlGenericUtil.cs
- ProjectionPruner.cs
- Transform3DGroup.cs
- SqlConnectionFactory.cs
- EmptyControlCollection.cs
- DependencySource.cs
- RemotingAttributes.cs
- PermissionAttributes.cs
- ResourceSet.cs
- CheckoutException.cs
- DebugHandleTracker.cs
- DescriptionAttribute.cs
- Point3DCollectionConverter.cs
- PreProcessor.cs
- AsyncPostBackTrigger.cs
- SqlResolver.cs
- CaseStatement.cs
- DataGridViewCellParsingEventArgs.cs
- XmlTypeMapping.cs
- RestClientProxyHandler.cs
- FormViewPageEventArgs.cs
- EntityDataSourceConfigureObjectContext.cs
- Label.cs
- Window.cs
- QueryExpr.cs
- FieldDescriptor.cs
- StringWriter.cs
- IDReferencePropertyAttribute.cs
- OleTxTransaction.cs
- DataContractSerializerFaultFormatter.cs
- AsyncResult.cs
- ChtmlTextBoxAdapter.cs
- ContentElement.cs
- BreadCrumbTextConverter.cs
- Cursor.cs
- RoutedCommand.cs
- DesignerTransaction.cs
- WindowsButton.cs
- Point4DValueSerializer.cs
- TreeNodeSelectionProcessor.cs
- ListViewItem.cs
- OneWayElement.cs
- EntitySetRetriever.cs
- DbgCompiler.cs
- HostingEnvironmentSection.cs
- SQLGuid.cs
- BrushConverter.cs
- SqlDataSourceCache.cs
- ListItemParagraph.cs
- OleDbInfoMessageEvent.cs
- InheritedPropertyDescriptor.cs
- DataGridViewEditingControlShowingEventArgs.cs
- PropertyGeneratedEventArgs.cs
- ErrorWrapper.cs