Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / Configuration / CompilerCollection.cs / 5 / CompilerCollection.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(Compiler), AddItemName = "compiler", CollectionType = ConfigurationElementCollectionType.BasicMap)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class CompilerCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static CompilerCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public CompilerCollection() : base(StringComparer.OrdinalIgnoreCase) { } // public properties public string[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } public new Compiler this[string language] { get { return (Compiler)BaseGet(language); } } public Compiler this[int index] { get { return (Compiler)BaseGet(index); } // set // { // throw new ConfigurationErrorsException(SR.GetString(SR.Config_read_only_section_cannot_be_set, "CompilerCollection")); // if (BaseGet(index) != null) // BaseRemoveAt(index); // BaseAdd(index,value); // } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new Compiler(); } protected override Object GetElementKey(ConfigurationElement element) { return ((Compiler)element).Language; } protected override string ElementName { get { return "compiler"; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } // public methods // public void Add(Compiler compiler) { // BaseAdd(compiler); // } // public void Clear() { // BaseClear(); // } public Compiler Get(int index) { return (Compiler)BaseGet(index); } public Compiler Get(string language) { return (Compiler)BaseGet(language); } public String GetKey(int index) { return (String) BaseGetKey(index); } // public void Remove(string language) { // BaseRemove(language); // } // public void RemoveAt(int index) { // BaseRemoveAt(index); // } // public void Set(Compiler compiler) { // BaseAdd(compiler,false); // } } } // 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(Compiler), AddItemName = "compiler", CollectionType = ConfigurationElementCollectionType.BasicMap)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class CompilerCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static CompilerCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public CompilerCollection() : base(StringComparer.OrdinalIgnoreCase) { } // public properties public string[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } public new Compiler this[string language] { get { return (Compiler)BaseGet(language); } } public Compiler this[int index] { get { return (Compiler)BaseGet(index); } // set // { // throw new ConfigurationErrorsException(SR.GetString(SR.Config_read_only_section_cannot_be_set, "CompilerCollection")); // if (BaseGet(index) != null) // BaseRemoveAt(index); // BaseAdd(index,value); // } } // Protected Overrides protected override ConfigurationElement CreateNewElement() { return new Compiler(); } protected override Object GetElementKey(ConfigurationElement element) { return ((Compiler)element).Language; } protected override string ElementName { get { return "compiler"; } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } // public methods // public void Add(Compiler compiler) { // BaseAdd(compiler); // } // public void Clear() { // BaseClear(); // } public Compiler Get(int index) { return (Compiler)BaseGet(index); } public Compiler Get(string language) { return (Compiler)BaseGet(language); } public String GetKey(int index) { return (String) BaseGetKey(index); } // public void Remove(string language) { // BaseRemove(language); // } // public void RemoveAt(int index) { // BaseRemoveAt(index); // } // public void Set(Compiler compiler) { // BaseAdd(compiler,false); // } } } // 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
- EventToken.cs
- AssociationTypeEmitter.cs
- WebExceptionStatus.cs
- IRCollection.cs
- CodeGeneratorOptions.cs
- AssociationType.cs
- DataColumnChangeEvent.cs
- Win32.cs
- Choices.cs
- GridItemPattern.cs
- AppDomainShutdownMonitor.cs
- FamilyCollection.cs
- DataServiceQueryOfT.cs
- DataGridViewTextBoxCell.cs
- ProxyElement.cs
- ChtmlTextWriter.cs
- WebConfigurationFileMap.cs
- ActiveXContainer.cs
- JoinTreeNode.cs
- InteropBitmapSource.cs
- IPPacketInformation.cs
- SigningProgress.cs
- TemplateBindingExpression.cs
- ConsumerConnectionPoint.cs
- PropertyGrid.cs
- mda.cs
- DispatcherSynchronizationContext.cs
- DetailsViewDeletedEventArgs.cs
- validation.cs
- InvokeGenerator.cs
- DynamicMethod.cs
- PackWebRequestFactory.cs
- WindowsIdentity.cs
- WindowsStatic.cs
- XmlDownloadManager.cs
- Symbol.cs
- RedistVersionInfo.cs
- IdentityHolder.cs
- AssemblyUtil.cs
- TrackingProfileSerializer.cs
- DataGridToolTip.cs
- SerializationEventsCache.cs
- VirtualPath.cs
- TraceContextRecord.cs
- SqlInfoMessageEvent.cs
- Stopwatch.cs
- HtmlGenericControl.cs
- TimerElapsedEvenArgs.cs
- InstanceKey.cs
- DesignerCommandAdapter.cs
- ObjectDataSourceStatusEventArgs.cs
- WebControlsSection.cs
- diagnosticsswitches.cs
- Int32RectValueSerializer.cs
- HashHelper.cs
- KnownBoxes.cs
- Assert.cs
- ZoneLinkButton.cs
- IntSecurity.cs
- HtmlProps.cs
- Verify.cs
- ContainerSelectorGlyph.cs
- WebHttpDispatchOperationSelectorData.cs
- ScriptRegistrationManager.cs
- ModifierKeysConverter.cs
- SliderAutomationPeer.cs
- XmlSchemaElement.cs
- Int16Converter.cs
- Calendar.cs
- BaseConfigurationRecord.cs
- SelectionEditingBehavior.cs
- DynamicILGenerator.cs
- ExpressionPrefixAttribute.cs
- ImageFormatConverter.cs
- ReferenceService.cs
- CreateParams.cs
- VersionedStreamOwner.cs
- TransformerConfigurationWizardBase.cs
- TextDecorations.cs
- NativeMethods.cs
- RecipientInfo.cs
- UndoEngine.cs
- SchemaTableOptionalColumn.cs
- TextServicesCompartment.cs
- Attribute.cs
- AmbientValueAttribute.cs
- StrongName.cs
- OdbcReferenceCollection.cs
- SignatureResourcePool.cs
- EDesignUtil.cs
- QualificationDataItem.cs
- DesignerCommandAdapter.cs
- TripleDES.cs
- WebScriptEnablingBehavior.cs
- RoleService.cs
- ScriptIgnoreAttribute.cs
- TypeHelper.cs
- SqlParameterizer.cs
- SafeCryptoHandles.cs
- HtmlWindowCollection.cs