Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- MemberCollection.cs
- PseudoWebRequest.cs
- WindowsListViewGroup.cs
- DesignerObjectListAdapter.cs
- ToolStripDropDownItem.cs
- SrgsSubset.cs
- SetterBaseCollection.cs
- DataContext.cs
- JsonGlobals.cs
- DataRelationPropertyDescriptor.cs
- XmlAutoDetectWriter.cs
- RoutingChannelExtension.cs
- SynchronizationContextHelper.cs
- OperationValidationEventArgs.cs
- CodeDomSerializerException.cs
- ResourceDictionaryCollection.cs
- BuildManager.cs
- MediaCommands.cs
- StreamAsIStream.cs
- DbConnectionOptions.cs
- BitmapCache.cs
- WebBaseEventKeyComparer.cs
- QueryExpression.cs
- AssemblyResolver.cs
- EntityDataReader.cs
- SplitterCancelEvent.cs
- DataGridViewSelectedRowCollection.cs
- CacheChildrenQuery.cs
- NetPeerTcpBindingCollectionElement.cs
- ParseElementCollection.cs
- HwndHost.cs
- DisplayNameAttribute.cs
- JavaScriptSerializer.cs
- LogWriteRestartAreaAsyncResult.cs
- COM2ExtendedUITypeEditor.cs
- XmlSchemaExporter.cs
- ChainOfDependencies.cs
- EntitySqlException.cs
- SQLDateTime.cs
- Rule.cs
- DocumentViewerHelper.cs
- DocumentOrderQuery.cs
- WebPartVerb.cs
- AppSettingsReader.cs
- ExpressionList.cs
- XPathDocumentIterator.cs
- ContextStaticAttribute.cs
- PromptEventArgs.cs
- IntSecurity.cs
- Assert.cs
- ConfigurationSchemaErrors.cs
- EvidenceBase.cs
- WindowShowOrOpenTracker.cs
- SoundPlayer.cs
- SignedInfo.cs
- PropertyDescriptorComparer.cs
- CfgParser.cs
- RequestCachePolicyConverter.cs
- MediaContextNotificationWindow.cs
- RootBrowserWindowProxy.cs
- Vector3DAnimation.cs
- _KerberosClient.cs
- DataControlPagerLinkButton.cs
- WebConfigManager.cs
- TryLoadRunnableWorkflowCommand.cs
- HTMLTagNameToTypeMapper.cs
- HeaderUtility.cs
- CapabilitiesPattern.cs
- DataViewSetting.cs
- Expressions.cs
- EntityKeyElement.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- FixedSOMLineCollection.cs
- UnsafeNativeMethods.cs
- Process.cs
- PolygonHotSpot.cs
- RegexCompiler.cs
- TextTreeDeleteContentUndoUnit.cs
- DebuggerAttributes.cs
- StylusButton.cs
- WebResourceUtil.cs
- SR.Designer.cs
- cookiecollection.cs
- BindableTemplateBuilder.cs
- SegmentTree.cs
- autovalidator.cs
- ReadOnlyDictionary.cs
- FtpWebRequest.cs
- RadioButton.cs
- BitmapEffectDrawingContextState.cs
- VSWCFServiceContractGenerator.cs
- QueryExpression.cs
- IssuedSecurityTokenProvider.cs
- CorrelationService.cs
- MetadataException.cs
- SmiContextFactory.cs
- RolePrincipal.cs
- OdbcException.cs
- SerTrace.cs
- SoapDocumentMethodAttribute.cs