Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / AssemblyCollection.cs / 1 / AssemblyCollection.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; [ConfigurationCollection(typeof(AssemblyInfo))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class AssemblyCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static AssemblyCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public AssemblyInfo this[int index] { get { return (AssemblyInfo)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new AssemblyInfo this[String assemblyName] { get { return (AssemblyInfo)BaseGet(assemblyName); } } public void Add(AssemblyInfo assemblyInformation) { BaseAdd(assemblyInformation); } public void Remove(String key) { BaseRemove(key); } public void RemoveAt(int index) { BaseRemoveAt(index); } protected override ConfigurationElement CreateNewElement() { return new AssemblyInfo(); } protected override Object GetElementKey(ConfigurationElement element) { return ((AssemblyInfo)element).Assembly; } public void Clear() { BaseClear(); } internal bool IsRemoved(string key) { return BaseIsRemoved(key); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; [ConfigurationCollection(typeof(AssemblyInfo))] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class AssemblyCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static AssemblyCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public AssemblyInfo this[int index] { get { return (AssemblyInfo)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public new AssemblyInfo this[String assemblyName] { get { return (AssemblyInfo)BaseGet(assemblyName); } } public void Add(AssemblyInfo assemblyInformation) { BaseAdd(assemblyInformation); } public void Remove(String key) { BaseRemove(key); } public void RemoveAt(int index) { BaseRemoveAt(index); } protected override ConfigurationElement CreateNewElement() { return new AssemblyInfo(); } protected override Object GetElementKey(ConfigurationElement element) { return ((AssemblyInfo)element).Assembly; } public void Clear() { BaseClear(); } internal bool IsRemoved(string key) { return BaseIsRemoved(key); } } } // 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
- _LazyAsyncResult.cs
- InputLanguageEventArgs.cs
- ContextBase.cs
- StringAttributeCollection.cs
- XmlRawWriter.cs
- ClientRuntimeConfig.cs
- TypeUtil.cs
- StateMachineHelpers.cs
- PageHandlerFactory.cs
- SystemIPGlobalProperties.cs
- ImpersonationOption.cs
- NullableBoolConverter.cs
- GroupItemAutomationPeer.cs
- HandlerBase.cs
- CompositeDataBoundControl.cs
- DetailsViewPageEventArgs.cs
- TrackingLocationCollection.cs
- MachineSettingsSection.cs
- TrustManager.cs
- DBCommandBuilder.cs
- Size3DConverter.cs
- Parser.cs
- RowUpdatingEventArgs.cs
- Rijndael.cs
- WebPartConnectionsEventArgs.cs
- SharedHttpsTransportManager.cs
- InkSerializer.cs
- SchemaEntity.cs
- CustomValidator.cs
- Int64AnimationBase.cs
- ResourceIDHelper.cs
- BindingGroup.cs
- CheckPair.cs
- PageCatalogPart.cs
- SelectionEditor.cs
- WebPartDeleteVerb.cs
- DocumentPageTextView.cs
- SelectionRange.cs
- StringReader.cs
- PolicyManager.cs
- SynchronizationContext.cs
- CompressStream.cs
- Vector3DAnimationUsingKeyFrames.cs
- SoapAttributeOverrides.cs
- EventLogEntry.cs
- TableDetailsRow.cs
- ArgumentReference.cs
- DbConnectionPoolCounters.cs
- ListenerAdapterBase.cs
- NameValueSectionHandler.cs
- ContextProperty.cs
- ObjectMemberMapping.cs
- WindowsToolbarItemAsMenuItem.cs
- GeneralTransform3DGroup.cs
- DebuggerService.cs
- DocumentPaginator.cs
- PublisherMembershipCondition.cs
- SecurityElement.cs
- PreviewKeyDownEventArgs.cs
- _SingleItemRequestCache.cs
- exports.cs
- Attributes.cs
- Console.cs
- HtmlLiteralTextAdapter.cs
- XmlSerializableServices.cs
- LiteralControl.cs
- LocalizationComments.cs
- WeakEventTable.cs
- XMLSchema.cs
- HyperLink.cs
- SHA256CryptoServiceProvider.cs
- LambdaCompiler.Logical.cs
- ZoneLinkButton.cs
- HostedElements.cs
- WCFBuildProvider.cs
- BufferBuilder.cs
- _ListenerResponseStream.cs
- ItemDragEvent.cs
- StylusButton.cs
- LineInfo.cs
- XmlMemberMapping.cs
- ProtocolElementCollection.cs
- OdbcConnectionOpen.cs
- StaticResourceExtension.cs
- PersonalizablePropertyEntry.cs
- TextPointerBase.cs
- CqlWriter.cs
- ComponentCache.cs
- MethodBuilderInstantiation.cs
- StreamedFramingRequestChannel.cs
- DirectoryNotFoundException.cs
- FunctionUpdateCommand.cs
- AnimatedTypeHelpers.cs
- DateTime.cs
- IsolatedStorageException.cs
- WhiteSpaceTrimStringConverter.cs
- URI.cs
- TextParagraph.cs
- ForeignKeyConstraint.cs
- ParameterToken.cs