Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / Configuration / ConvertersCollection.cs / 2 / ConvertersCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Collections.Generic; using System.Configuration; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Security.Permissions; using System.Web; using System.Web.Compilation; using System.Web.Resources; using System.Web.Script.Serialization; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal), ConfigurationCollection(typeof(Converter)), SuppressMessage("Microsoft.Design", "CA1010:CollectionsShouldImplementGenericInterface", Justification="Derives from legacy collection base class. Base method IsReadOnly() " + "would clash with property ICollection.IsReadOnly.") ] public class ConvertersCollection : ConfigurationElementCollection { private static readonly ConfigurationPropertyCollection _properties = new ConfigurationPropertyCollection(); public ConvertersCollection() { } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public Converter this[int index] { get { return (Converter)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public void Add(Converter converter) { BaseAdd(converter); } public void Remove(Converter converter) { BaseRemove(GetElementKey(converter)); } public void Clear() { BaseClear(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override ConfigurationElement CreateNewElement() { return new Converter(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override Object GetElementKey(ConfigurationElement element) { return ((Converter)element).Name; } internal JavaScriptConverter[] CreateConverters() { List list = new List (); foreach (Converter converter in this) { Type t = BuildManager.GetType(converter.Type, false /*throwOnError*/); if (t == null) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ConvertersCollection_UnknownType, converter.Type)); } if (!typeof(JavaScriptConverter).IsAssignableFrom(t)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ConvertersCollection_NotJavaScriptConverter, t.Name)); } list.Add((JavaScriptConverter)Activator.CreateInstance(t)); } return list.ToArray(); } } } // 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.Collections.Generic; using System.Configuration; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Security.Permissions; using System.Web; using System.Web.Compilation; using System.Web.Resources; using System.Web.Script.Serialization; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal), ConfigurationCollection(typeof(Converter)), SuppressMessage("Microsoft.Design", "CA1010:CollectionsShouldImplementGenericInterface", Justification="Derives from legacy collection base class. Base method IsReadOnly() " + "would clash with property ICollection.IsReadOnly.") ] public class ConvertersCollection : ConfigurationElementCollection { private static readonly ConfigurationPropertyCollection _properties = new ConfigurationPropertyCollection(); public ConvertersCollection() { } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override ConfigurationPropertyCollection Properties { get { return _properties; } } public Converter this[int index] { get { return (Converter)BaseGet(index); } set { if (BaseGet(index) != null) { BaseRemoveAt(index); } BaseAdd(index, value); } } public void Add(Converter converter) { BaseAdd(converter); } public void Remove(Converter converter) { BaseRemove(GetElementKey(converter)); } public void Clear() { BaseClear(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override ConfigurationElement CreateNewElement() { return new Converter(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override Object GetElementKey(ConfigurationElement element) { return ((Converter)element).Name; } internal JavaScriptConverter[] CreateConverters() { List list = new List (); foreach (Converter converter in this) { Type t = BuildManager.GetType(converter.Type, false /*throwOnError*/); if (t == null) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ConvertersCollection_UnknownType, converter.Type)); } if (!typeof(JavaScriptConverter).IsAssignableFrom(t)) { throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ConvertersCollection_NotJavaScriptConverter, t.Name)); } list.Add((JavaScriptConverter)Activator.CreateInstance(t)); } return list.ToArray(); } } } // 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
- ConfigurationValidatorBase.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- ApplicationInfo.cs
- XmlSchemaAny.cs
- DrawingServices.cs
- DragDeltaEventArgs.cs
- HttpApplicationFactory.cs
- RuleSettingsCollection.cs
- SortDescription.cs
- ColorContext.cs
- SequenceQuery.cs
- Parser.cs
- UnsafeNativeMethods.cs
- _NegotiateClient.cs
- ADMembershipUser.cs
- ClientCredentials.cs
- ProjectionRewriter.cs
- MinimizableAttributeTypeConverter.cs
- RectValueSerializer.cs
- PathNode.cs
- HwndTarget.cs
- ReservationNotFoundException.cs
- XmlSchemaValidationException.cs
- DefaultShape.cs
- SqlDuplicator.cs
- ResourcePermissionBase.cs
- DelayLoadType.cs
- AggregateNode.cs
- AssemblySettingAttributes.cs
- TakeQueryOptionExpression.cs
- followingsibling.cs
- DesignerDataView.cs
- TokenBasedSet.cs
- LowerCaseStringConverter.cs
- DocumentPageView.cs
- MailDefinition.cs
- NameValueConfigurationCollection.cs
- _AutoWebProxyScriptEngine.cs
- EdmRelationshipRoleAttribute.cs
- RegistryDataKey.cs
- TableAdapterManagerGenerator.cs
- VariableQuery.cs
- SoundPlayerAction.cs
- PropertyStore.cs
- AuthenticationServiceManager.cs
- EntityTypeBase.cs
- EntityViewGenerationAttribute.cs
- XmlILConstructAnalyzer.cs
- ReceiveSecurityHeaderEntry.cs
- DesignerActionMethodItem.cs
- __Filters.cs
- ClockGroup.cs
- UIntPtr.cs
- PublisherIdentityPermission.cs
- Types.cs
- CharacterHit.cs
- rsa.cs
- CorrelationRequestContext.cs
- ResXFileRef.cs
- DataTableMapping.cs
- WeakEventTable.cs
- ObfuscateAssemblyAttribute.cs
- RadioButton.cs
- PageVisual.cs
- TableCellCollection.cs
- BindingNavigator.cs
- GPPOINTF.cs
- ColorConverter.cs
- WebCategoryAttribute.cs
- StateChangeEvent.cs
- EncryptedXml.cs
- ResourceWriter.cs
- EncryptedPackage.cs
- UniqueConstraint.cs
- DesignerVerbCollection.cs
- CategoryNameCollection.cs
- XamlVector3DCollectionSerializer.cs
- TextServicesCompartmentEventSink.cs
- SynchronizedDispatch.cs
- EdgeModeValidation.cs
- CompilerScopeManager.cs
- LogWriteRestartAreaState.cs
- TypeBuilderInstantiation.cs
- milexports.cs
- _HeaderInfo.cs
- MulticastDelegate.cs
- Schema.cs
- FindCompletedEventArgs.cs
- InkCanvas.cs
- WebPartZoneCollection.cs
- SynchronizedDispatch.cs
- FilterableAttribute.cs
- EditorPartChrome.cs
- Mapping.cs
- SqlGenericUtil.cs
- AsymmetricSignatureDeformatter.cs
- HttpContextServiceHost.cs
- COM2PropertyPageUITypeConverter.cs
- CompiledQuery.cs
- WindowsPen.cs