Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / CompilerCollection.cs / 1305376 / 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)]
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)]
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
- _NestedMultipleAsyncResult.cs
- FlatButtonAppearance.cs
- IntSecurity.cs
- mda.cs
- RequestChannel.cs
- KnownColorTable.cs
- EntityDataSourceChangingEventArgs.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- BindingMemberInfo.cs
- EventItfInfo.cs
- DataGridViewColumnDesigner.cs
- ClientRuntimeConfig.cs
- UnsafeNativeMethodsTablet.cs
- ResourceAttributes.cs
- HybridDictionary.cs
- Application.cs
- Light.cs
- XPathExpr.cs
- FieldMetadata.cs
- Parser.cs
- SqlBuilder.cs
- BitmapPalettes.cs
- CompoundFileStorageReference.cs
- PersonalizationStateInfo.cs
- DataQuery.cs
- LongValidatorAttribute.cs
- MultiBindingExpression.cs
- MsmqReceiveParameters.cs
- SectionInformation.cs
- Parallel.cs
- InputElement.cs
- VersionConverter.cs
- CommunicationObjectFaultedException.cs
- ServiceOperationParameter.cs
- PeerDuplexChannel.cs
- ScrollProviderWrapper.cs
- FormatConvertedBitmap.cs
- MultitargetUtil.cs
- SystemResources.cs
- IteratorFilter.cs
- RectangleHotSpot.cs
- WebPartActionVerb.cs
- CompositeFontFamily.cs
- Drawing.cs
- Subtree.cs
- Stroke2.cs
- HyperLink.cs
- HasCopySemanticsAttribute.cs
- TraceData.cs
- Material.cs
- DataGridCommandEventArgs.cs
- Point3DCollectionConverter.cs
- StringFormat.cs
- EncodingStreamWrapper.cs
- WebPartCollection.cs
- TypeDelegator.cs
- EditorPart.cs
- ConnectionStringSettingsCollection.cs
- TreeWalker.cs
- TableLayoutSettings.cs
- XhtmlConformanceSection.cs
- WebPartAddingEventArgs.cs
- TcpProcessProtocolHandler.cs
- SelectionChangedEventArgs.cs
- List.cs
- shaperfactory.cs
- ToolStripDropDownClosedEventArgs.cs
- FontWeights.cs
- InvokeBase.cs
- FormatConvertedBitmap.cs
- WebControlToolBoxItem.cs
- SessionEndedEventArgs.cs
- ErrorWrapper.cs
- HotCommands.cs
- DesignColumn.cs
- CaseCqlBlock.cs
- OleDbError.cs
- ReaderWriterLockWrapper.cs
- Span.cs
- DataObjectFieldAttribute.cs
- RelationshipConverter.cs
- Pen.cs
- InputLanguageManager.cs
- SharedPerformanceCounter.cs
- ActivationArguments.cs
- ScrollItemPatternIdentifiers.cs
- CustomAttributeSerializer.cs
- SmtpClient.cs
- SizeF.cs
- SectionXmlInfo.cs
- UnmanagedHandle.cs
- Int32KeyFrameCollection.cs
- EventMappingSettings.cs
- rsa.cs
- PingReply.cs
- ServiceOperationParameter.cs
- SQLByte.cs
- X509CertificateCollection.cs
- XmlCollation.cs
- BitHelper.cs