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
- SchemaNotation.cs
- EntityTypeEmitter.cs
- ItemList.cs
- Win32SafeHandles.cs
- XmlILOptimizerVisitor.cs
- VisualStyleInformation.cs
- RadialGradientBrush.cs
- MonitorWrapper.cs
- HttpServerVarsCollection.cs
- BasicExpressionVisitor.cs
- PipeStream.cs
- Rect3DConverter.cs
- ChineseLunisolarCalendar.cs
- DataServiceBuildProvider.cs
- RegexCapture.cs
- ScrollViewer.cs
- SourceItem.cs
- WebEncodingValidatorAttribute.cs
- TableSectionStyle.cs
- pingexception.cs
- IndependentlyAnimatedPropertyMetadata.cs
- SpotLight.cs
- StateRuntime.cs
- UnsafeNativeMethods.cs
- GlobalItem.cs
- printdlgexmarshaler.cs
- WebPartEditorApplyVerb.cs
- CustomError.cs
- WorkflowControlEndpoint.cs
- MapPathBasedVirtualPathProvider.cs
- DataGridViewAdvancedBorderStyle.cs
- KnownColorTable.cs
- SupportingTokenSpecification.cs
- ProfileInfo.cs
- SchemaEntity.cs
- PrimitiveRenderer.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- HttpCachePolicyElement.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- Overlapped.cs
- DelegatingHeader.cs
- FunctionUpdateCommand.cs
- Registry.cs
- BaseDataList.cs
- CachedResourceDictionaryExtension.cs
- BasicExpressionVisitor.cs
- SingleConverter.cs
- EventManager.cs
- AlignmentXValidation.cs
- IdentifierService.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- TrackingServices.cs
- CustomAttributeBuilder.cs
- HtmlDocument.cs
- ProfileSection.cs
- ReachDocumentSequenceSerializerAsync.cs
- HWStack.cs
- CallContext.cs
- TemplateBamlTreeBuilder.cs
- PassportIdentity.cs
- DataGridViewCellPaintingEventArgs.cs
- CollectionViewSource.cs
- XmlSchemaResource.cs
- _NegotiateClient.cs
- elementinformation.cs
- TextLine.cs
- RuleProcessor.cs
- FontConverter.cs
- InstanceDataCollection.cs
- DataGridViewRowPrePaintEventArgs.cs
- AffineTransform3D.cs
- CompoundFileReference.cs
- WorkflowMessageEventHandler.cs
- CompositeKey.cs
- WorkflowInstanceTerminatedRecord.cs
- TokenizerHelper.cs
- TextBlock.cs
- _ProxyRegBlob.cs
- PrintDialog.cs
- BindingCollection.cs
- AuthenticationModulesSection.cs
- MimeTypeAttribute.cs
- DataGridViewHeaderCell.cs
- DecimalStorage.cs
- EntityDataSourceContextCreatedEventArgs.cs
- CapabilitiesAssignment.cs
- TemplateBamlTreeBuilder.cs
- DataGrid.cs
- DictionaryBase.cs
- HitTestWithPointDrawingContextWalker.cs
- Module.cs
- SchemaMapping.cs
- PolyQuadraticBezierSegment.cs
- ReadOnlyHierarchicalDataSource.cs
- KeyGestureConverter.cs
- NumericUpDownAcceleration.cs
- JsonFormatGeneratorStatics.cs
- EntityClassGenerator.cs
- HeaderCollection.cs
- SoapIncludeAttribute.cs