Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / xsp / System / Web / Extensions / Configuration / ConvertersCollection.cs / 1 / 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
- PolicyDesigner.cs
- BaseComponentEditor.cs
- SqlNodeAnnotation.cs
- DrawListViewItemEventArgs.cs
- AdRotator.cs
- WorkerRequest.cs
- _SslState.cs
- SafePEFileHandle.cs
- PackageDigitalSignature.cs
- FatalException.cs
- GroupQuery.cs
- NavigationPropertyEmitter.cs
- XmlArrayItemAttribute.cs
- ProvideValueServiceProvider.cs
- PropertyTab.cs
- OleDbError.cs
- XpsDocumentEvent.cs
- SizeConverter.cs
- DllNotFoundException.cs
- SQLBytesStorage.cs
- BindingValueChangedEventArgs.cs
- ServiceDesigner.xaml.cs
- WebMessageEncodingBindingElement.cs
- WindowsPrincipal.cs
- HtmlMeta.cs
- CheckBox.cs
- DataMemberListEditor.cs
- ListItemCollection.cs
- GeneralTransform3DGroup.cs
- AutoGeneratedField.cs
- SoapCommonClasses.cs
- List.cs
- UnsafeNativeMethods.cs
- GraphicsState.cs
- ControlBindingsCollection.cs
- ViewGenerator.cs
- ObjectConverter.cs
- XmlSiteMapProvider.cs
- ServiceContractListItem.cs
- Context.cs
- DataSourceDesigner.cs
- ImageBrush.cs
- XmlDictionaryReaderQuotas.cs
- InstanceLockTracking.cs
- ConnectionOrientedTransportManager.cs
- Geometry3D.cs
- ExpressionNormalizer.cs
- ProfileSettings.cs
- X509SecurityTokenProvider.cs
- TableStyle.cs
- DebugView.cs
- DataControlHelper.cs
- SpecularMaterial.cs
- DataPointer.cs
- RawTextInputReport.cs
- ChannelParameterCollection.cs
- Executor.cs
- DbSetClause.cs
- _CacheStreams.cs
- RegexStringValidator.cs
- FixedSOMPageElement.cs
- CurrentTimeZone.cs
- DataPager.cs
- ThemeDirectoryCompiler.cs
- StorageSetMapping.cs
- SynchronizationHandlesCodeDomSerializer.cs
- DictionaryCustomTypeDescriptor.cs
- EmptyEnumerator.cs
- Debug.cs
- KoreanLunisolarCalendar.cs
- ActionItem.cs
- PersonalizableAttribute.cs
- EmissiveMaterial.cs
- BindingExpressionUncommonField.cs
- AffineTransform3D.cs
- TimeStampChecker.cs
- StateRuntime.cs
- RequestCacheEntry.cs
- Terminate.cs
- SingleAnimationBase.cs
- KeyNotFoundException.cs
- EntityTransaction.cs
- CharUnicodeInfo.cs
- TdsEnums.cs
- CustomActivityDesigner.cs
- VisualStyleRenderer.cs
- TextContainer.cs
- DataGridHelper.cs
- BaseCollection.cs
- WebPartZoneDesigner.cs
- XmlSchemaImport.cs
- BlurBitmapEffect.cs
- AssociatedControlConverter.cs
- SafeFileMapViewHandle.cs
- CodeNamespaceCollection.cs
- BitStack.cs
- WaitHandleCannotBeOpenedException.cs
- DataSetViewSchema.cs
- RegionInfo.cs
- CollectionCodeDomSerializer.cs