Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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 check arg, since we know it is valid since it came // from a TransformerTypeCollection. 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FileAuthorizationModule.cs
- DataGridViewControlCollection.cs
- FormatVersion.cs
- EntityViewGenerator.cs
- ZipIOLocalFileHeader.cs
- WaveHeader.cs
- TrustLevelCollection.cs
- Type.cs
- SchemaNamespaceManager.cs
- DetailsViewInsertEventArgs.cs
- MarshalByRefObject.cs
- LocalizableResourceBuilder.cs
- LineSegment.cs
- ThreadSafeList.cs
- ConfigurationSettings.cs
- RoleBoolean.cs
- Collection.cs
- BufferedGraphics.cs
- EdmToObjectNamespaceMap.cs
- ParserHooks.cs
- HtmlInputControl.cs
- CoreSwitches.cs
- CultureMapper.cs
- Inline.cs
- Scene3D.cs
- CatalogZone.cs
- OdbcConnection.cs
- ADMembershipProvider.cs
- XsdDateTime.cs
- CorePropertiesFilter.cs
- PrinterSettings.cs
- MetadataAssemblyHelper.cs
- ScriptReferenceEventArgs.cs
- SafeCryptoHandles.cs
- PropertyChange.cs
- CommandLibraryHelper.cs
- ProxySimple.cs
- XmlProcessingInstruction.cs
- RoutedEventConverter.cs
- MessageSecurityOverHttpElement.cs
- PointConverter.cs
- NotSupportedException.cs
- ConfigXmlReader.cs
- CommonDialog.cs
- SmiSettersStream.cs
- NestedContainer.cs
- CodeGroup.cs
- StructuredTypeInfo.cs
- ImageBrush.cs
- Classification.cs
- EventRecord.cs
- CodeBlockBuilder.cs
- FontUnit.cs
- HttpHandlerAction.cs
- WindowHideOrCloseTracker.cs
- DataGridCellsPresenter.cs
- SelectionWordBreaker.cs
- XhtmlConformanceSection.cs
- GridToolTip.cs
- SettingsPropertyCollection.cs
- NavigationWindowAutomationPeer.cs
- Renderer.cs
- _UncName.cs
- FileSecurity.cs
- SafeProcessHandle.cs
- DataSourceExpressionCollection.cs
- GlyphShapingProperties.cs
- InkCanvasFeedbackAdorner.cs
- Stacktrace.cs
- ProfileSection.cs
- WhileDesigner.cs
- BindingNavigator.cs
- WebPartConnectVerb.cs
- DecimalAverageAggregationOperator.cs
- ScopeCompiler.cs
- BrowserCapabilitiesFactory.cs
- WebUtil.cs
- CfgSemanticTag.cs
- FlowDocumentReaderAutomationPeer.cs
- StateManagedCollection.cs
- ConditionalAttribute.cs
- TemplateControlCodeDomTreeGenerator.cs
- ResourcePart.cs
- RuleInfoComparer.cs
- InputReport.cs
- IImplicitResourceProvider.cs
- SignatureDescription.cs
- ObjectDataSourceDisposingEventArgs.cs
- EmptyReadOnlyDictionaryInternal.cs
- RayHitTestParameters.cs
- DisplayClaim.cs
- Bits.cs
- NameValuePair.cs
- BitmapFrameDecode.cs
- DataServiceEntityAttribute.cs
- ConnectionProviderAttribute.cs
- DataGrid.cs
- QilCloneVisitor.cs
- ByteStreamMessageEncodingElement.cs
- AccessedThroughPropertyAttribute.cs