Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / BuildProviderCollection.cs / 3 / 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))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// 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))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextTreeDeleteContentUndoUnit.cs
- PagesSection.cs
- ClassHandlersStore.cs
- handlecollector.cs
- EntityWrapper.cs
- ResourceDescriptionAttribute.cs
- SqlColumnizer.cs
- ObjectDataSource.cs
- ControlAdapter.cs
- DataGridPagerStyle.cs
- PerspectiveCamera.cs
- DecimalAnimationBase.cs
- SyndicationPerson.cs
- TagPrefixAttribute.cs
- UpdateProgress.cs
- TraceLevelStore.cs
- ListenDesigner.cs
- Help.cs
- MaskedTextBox.cs
- CatalogPartChrome.cs
- HintTextConverter.cs
- SourceFilter.cs
- DataException.cs
- HostedImpersonationContext.cs
- Point3DKeyFrameCollection.cs
- ApplicationGesture.cs
- Math.cs
- PieceDirectory.cs
- Int64Animation.cs
- PenCursorManager.cs
- StdValidatorsAndConverters.cs
- MultidimensionalArrayItemReference.cs
- MSHTMLHost.cs
- ResourceCodeDomSerializer.cs
- ThumbAutomationPeer.cs
- DataGridAutoFormat.cs
- AppDomainFactory.cs
- X509CertificateRecipientClientCredential.cs
- StreamUpdate.cs
- Int32.cs
- WebServiceResponse.cs
- KeyValueConfigurationElement.cs
- TypeConverterValueSerializer.cs
- RootBrowserWindowProxy.cs
- Point3DKeyFrameCollection.cs
- SHA384Managed.cs
- BooleanProjectedSlot.cs
- FamilyTypefaceCollection.cs
- DataSet.cs
- SafeFileHandle.cs
- BindToObject.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- FormViewCommandEventArgs.cs
- CustomWebEventKey.cs
- DataGridViewUtilities.cs
- LocalFileSettingsProvider.cs
- AmbientLight.cs
- XNodeNavigator.cs
- HMACRIPEMD160.cs
- RequestCache.cs
- IntSecurity.cs
- HotSpot.cs
- ModelItemExtensions.cs
- XmlSchemaValidator.cs
- IntSecurity.cs
- CreateUserWizardStep.cs
- ApplicationSecurityManager.cs
- SystemIcmpV6Statistics.cs
- SchemaElement.cs
- XsltConvert.cs
- EventBookmark.cs
- WasHostedComPlusFactory.cs
- RowCache.cs
- _FtpControlStream.cs
- InputBuffer.cs
- ObjectStateManager.cs
- CompiledAction.cs
- AnimationTimeline.cs
- PointLight.cs
- SafeNativeMethods.cs
- Parsers.cs
- XmlSchemaAnnotation.cs
- NTAccount.cs
- ListViewItem.cs
- CmsInterop.cs
- LayoutTableCell.cs
- XmlKeywords.cs
- storepermission.cs
- ControlAdapter.cs
- X500Name.cs
- SmtpReplyReaderFactory.cs
- Point3DAnimationBase.cs
- Rotation3D.cs
- HttpBufferlessInputStream.cs
- XmlWellformedWriter.cs
- activationcontext.cs
- SelectionProcessor.cs
- HttpProcessUtility.cs
- ResourceDictionary.cs
- DodSequenceMerge.cs