Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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); } } } // 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
- MenuItemAutomationPeer.cs
- Version.cs
- EpmSourceTree.cs
- InfoCardServiceInstallComponent.cs
- IndividualDeviceConfig.cs
- SymmetricKeyWrap.cs
- PropertyGridEditorPart.cs
- CollectionView.cs
- Section.cs
- BinaryWriter.cs
- DoWorkEventArgs.cs
- HtmlInputFile.cs
- SqlBulkCopyColumnMapping.cs
- SecurityToken.cs
- ComAdminInterfaces.cs
- ObjectDataSource.cs
- XmlSchemaValidator.cs
- HttpCacheVaryByContentEncodings.cs
- AdjustableArrowCap.cs
- MobileListItemCollection.cs
- WebPartConnectionsCancelEventArgs.cs
- TreeNodeBinding.cs
- DynamicResourceExtensionConverter.cs
- DataGridRelationshipRow.cs
- DBConnectionString.cs
- Viewport2DVisual3D.cs
- DispatcherOperation.cs
- RadioButton.cs
- LineServices.cs
- ExpressionBindingCollection.cs
- ComponentResourceManager.cs
- TypeToken.cs
- ScrollItemPattern.cs
- HealthMonitoringSectionHelper.cs
- Decoder.cs
- TabControl.cs
- TraceData.cs
- altserialization.cs
- BindUriHelper.cs
- Page.cs
- Brush.cs
- TextContainerHelper.cs
- PkcsMisc.cs
- SchemaManager.cs
- InvalidPropValue.cs
- DataTemplate.cs
- GeneralTransform2DTo3DTo2D.cs
- TimeSpanOrInfiniteConverter.cs
- AssignDesigner.xaml.cs
- Validator.cs
- TriggerAction.cs
- IdentityNotMappedException.cs
- LZCodec.cs
- Root.cs
- DataSourceView.cs
- EncryptedPackage.cs
- DataSysAttribute.cs
- EncodingDataItem.cs
- PrintingPermission.cs
- FillRuleValidation.cs
- NativeMethods.cs
- ExpressionBuilder.cs
- XmlSerializerOperationBehavior.cs
- PowerEase.cs
- DateTimeFormatInfoScanner.cs
- Panel.cs
- XmlTextAttribute.cs
- XmlAtomErrorReader.cs
- DropDownButton.cs
- EndEvent.cs
- MonthCalendarDesigner.cs
- DiagnosticStrings.cs
- NetworkAddressChange.cs
- StrongNameIdentityPermission.cs
- BuildDependencySet.cs
- InlineCollection.cs
- NestedContainer.cs
- QuaternionIndependentAnimationStorage.cs
- LinqDataSourceContextEventArgs.cs
- DependencyObjectPropertyDescriptor.cs
- ErrorFormatterPage.cs
- CompilationLock.cs
- WebColorConverter.cs
- ParseNumbers.cs
- RequestQueue.cs
- InternalsVisibleToAttribute.cs
- DesignTimeVisibleAttribute.cs
- StackBuilderSink.cs
- ComponentCommands.cs
- Sequence.cs
- JsonEnumDataContract.cs
- StateValidator.cs
- MethodToken.cs
- ExeConfigurationFileMap.cs
- MultilineStringConverter.cs
- SHA384Cng.cs
- VersionedStreamOwner.cs
- SplashScreenNativeMethods.cs
- HtmlTextArea.cs
- HttpRuntimeSection.cs