Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / AssemblyCollection.cs / 5 / 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
- SimpleType.cs
- PrivilegeNotHeldException.cs
- TrustSection.cs
- TTSEngineTypes.cs
- DataViewManagerListItemTypeDescriptor.cs
- RegistrySecurity.cs
- ToolStripButton.cs
- CodeAttributeArgumentCollection.cs
- WebPartDisplayModeEventArgs.cs
- FeatureSupport.cs
- SortDescription.cs
- XpsS0ValidatingLoader.cs
- XmlSubtreeReader.cs
- ClipboardProcessor.cs
- ListParagraph.cs
- HandlerFactoryWrapper.cs
- FontSource.cs
- WebBrowserUriTypeConverter.cs
- DataGridRow.cs
- CodeLabeledStatement.cs
- RecordsAffectedEventArgs.cs
- EventArgs.cs
- XmlText.cs
- DefaultTraceListener.cs
- IndexedString.cs
- TextRunProperties.cs
- SecurityTokenTypes.cs
- LocalBuilder.cs
- UnsignedPublishLicense.cs
- AutomationAttributeInfo.cs
- HtmlContainerControl.cs
- SystemUdpStatistics.cs
- RoutedEventArgs.cs
- PersonalizationStateInfoCollection.cs
- Convert.cs
- recordstatefactory.cs
- NumericUpDownAccelerationCollection.cs
- PropertyItemInternal.cs
- ChildTable.cs
- SafeArrayTypeMismatchException.cs
- MessageEncodingBindingElementImporter.cs
- DBNull.cs
- FontSizeConverter.cs
- AxImporter.cs
- PropertyDescriptorCollection.cs
- XmlSchemaDocumentation.cs
- EditorAttributeInfo.cs
- EllipticalNodeOperations.cs
- oledbconnectionstring.cs
- XmlCharacterData.cs
- SoapAttributeOverrides.cs
- Property.cs
- CompilationRelaxations.cs
- BatchParser.cs
- RequestCachePolicyConverter.cs
- MenuCommand.cs
- MultiAsyncResult.cs
- CssClassPropertyAttribute.cs
- _CookieModule.cs
- Trustee.cs
- Int64Animation.cs
- DynamicPropertyReader.cs
- HttpListenerPrefixCollection.cs
- SqlClientPermission.cs
- ChangesetResponse.cs
- SqlTriggerAttribute.cs
- ChannelReliableSession.cs
- DataReceivedEventArgs.cs
- FixedSOMSemanticBox.cs
- X509SecurityTokenProvider.cs
- MsmqChannelFactory.cs
- ByteRangeDownloader.cs
- LeaseManager.cs
- TypeConverter.cs
- EventBuilder.cs
- WasHttpHandlersInstallComponent.cs
- RowSpanVector.cs
- UnsafeNativeMethods.cs
- PopOutPanel.cs
- FontClient.cs
- XmlSecureResolver.cs
- isolationinterop.cs
- LocalizationParserHooks.cs
- RectAnimationClockResource.cs
- ApplicationSecurityInfo.cs
- LeaseManager.cs
- System.Data_BID.cs
- FilteredSchemaElementLookUpTable.cs
- UnknownBitmapDecoder.cs
- FormsAuthenticationUserCollection.cs
- CollectionViewGroupInternal.cs
- XmlSchemaImport.cs
- AssertSection.cs
- JavaScriptObjectDeserializer.cs
- FrameworkTextComposition.cs
- InitializerFacet.cs
- WindowsGraphicsWrapper.cs
- ListBindingHelper.cs
- DesignerToolboxInfo.cs
- CollectionViewProxy.cs