Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / TransformerTypeCollection.cs / 1 / TransformerTypeCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TransformerTypeCollection : ReadOnlyCollectionBase { public static readonly TransformerTypeCollection Empty = new TransformerTypeCollection(); public TransformerTypeCollection() { } public TransformerTypeCollection(ICollection transformerTypes) { Initialize(null, transformerTypes); } public TransformerTypeCollection(TransformerTypeCollection existingTransformerTypes, ICollection transformerTypes) { Initialize(existingTransformerTypes, transformerTypes); } internal int Add(Type value) { if (!value.IsSubclassOf(typeof(WebPartTransformer))) { throw new InvalidOperationException(SR.GetString(SR.WebPartTransformerAttribute_NotTransformer, value.Name)); } return InnerList.Add(value); } private void Initialize(TransformerTypeCollection existingTransformerTypes, ICollection transformerTypes) { if (existingTransformerTypes != null) { foreach (Type existingTransformerType in existingTransformerTypes) { // Don't need to InnerList.Add(existingTransformerType); } } if (transformerTypes != null) { foreach (object obj in transformerTypes) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "transformerTypes"); } if (!(obj is Type)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "Type"), "transformerTypes"); } if (!((Type)obj).IsSubclassOf(typeof(WebPartTransformer))) { throw new ArgumentException(SR.GetString(SR.WebPartTransformerAttribute_NotTransformer, ((Type)obj).Name), "transformerTypes"); } InnerList.Add(obj); } } } public bool Contains(Type value) { return InnerList.Contains(value); } public int IndexOf(Type value) { return InnerList.IndexOf(value); } public Type this[int index] { get { return (Type)InnerList[index]; } } public void CopyTo(Type[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FieldAccessException.cs
- CqlQuery.cs
- ModelTreeManager.cs
- UrlAuthFailureHandler.cs
- StrokeCollectionDefaultValueFactory.cs
- OrderByBuilder.cs
- TableItemPatternIdentifiers.cs
- Visual3DCollection.cs
- CheckoutException.cs
- securestring.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- SequentialUshortCollection.cs
- OledbConnectionStringbuilder.cs
- Currency.cs
- DocobjHost.cs
- FilterEventArgs.cs
- ValueTypeFixupInfo.cs
- PerformanceCounterLib.cs
- SoapInteropTypes.cs
- StyleCollection.cs
- BitArray.cs
- Pair.cs
- ThreadPoolTaskScheduler.cs
- EntityClassGenerator.cs
- ToolStripPanelDesigner.cs
- Thickness.cs
- ObjectCloneHelper.cs
- WebPartHeaderCloseVerb.cs
- SafeFileMapViewHandle.cs
- ConstructorBuilder.cs
- CachedPathData.cs
- TabControl.cs
- MappingMetadataHelper.cs
- AssertFilter.cs
- PeerEndPoint.cs
- TextEditorContextMenu.cs
- ControlIdConverter.cs
- ErrorTableItemStyle.cs
- ImplicitInputBrush.cs
- FixedSchema.cs
- ContentElement.cs
- DataGridViewComboBoxEditingControl.cs
- DataGridViewRowPrePaintEventArgs.cs
- DynamicFilter.cs
- ElementMarkupObject.cs
- ActiveXMessageFormatter.cs
- Walker.cs
- DesignerActionVerbList.cs
- TreeViewAutomationPeer.cs
- AsmxEndpointPickerExtension.cs
- BaseResourcesBuildProvider.cs
- sqlnorm.cs
- ObjectStateFormatter.cs
- AppliedDeviceFiltersEditor.cs
- XmlNodeWriter.cs
- _ListenerRequestStream.cs
- ConfigurationSectionGroup.cs
- BaseParser.cs
- TextEndOfParagraph.cs
- TrustSection.cs
- ContractCodeDomInfo.cs
- AvTrace.cs
- AlternateView.cs
- CompositeDuplexBindingElement.cs
- EnvironmentPermission.cs
- BitmapSource.cs
- CatalogPartCollection.cs
- PageHandlerFactory.cs
- Button.cs
- ServiceDocument.cs
- VectorAnimation.cs
- TcpChannelHelper.cs
- QilReference.cs
- CompilerErrorCollection.cs
- XmlDataSource.cs
- RemotingServices.cs
- ErrorFormatter.cs
- XamlTreeBuilder.cs
- FieldReference.cs
- DropTarget.cs
- login.cs
- WeakEventManager.cs
- LinqDataView.cs
- MethodCallExpression.cs
- DataObjectSettingDataEventArgs.cs
- TextChange.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- CompilerError.cs
- DatagridviewDisplayedBandsData.cs
- DynamicResourceExtensionConverter.cs
- TeredoHelper.cs
- CompModSwitches.cs
- DataColumnCollection.cs
- TableAutomationPeer.cs
- ColorConverter.cs
- sqlcontext.cs
- GridViewRow.cs
- IPAddressCollection.cs
- KeyValueInternalCollection.cs
- DocumentProperties.cs