Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- EventMappingSettings.cs
- HashHelper.cs
- SQLSingleStorage.cs
- RectangleGeometry.cs
- SystemShuttingDownException.cs
- DllNotFoundException.cs
- SqlDataSourceQueryConverter.cs
- DetailsViewDeleteEventArgs.cs
- Reference.cs
- NonSerializedAttribute.cs
- ExceptionWrapper.cs
- UriSection.cs
- XamlFxTrace.cs
- MethodCallConverter.cs
- UInt32Storage.cs
- CacheVirtualItemsEvent.cs
- StateDesigner.TransitionInfo.cs
- InteropBitmapSource.cs
- ConvertBinder.cs
- ImageMap.cs
- SendContent.cs
- PlatformNotSupportedException.cs
- ColumnMapCopier.cs
- Paragraph.cs
- Interlocked.cs
- SQLInt16Storage.cs
- DataPagerCommandEventArgs.cs
- XmlSignatureManifest.cs
- Vector.cs
- SubtreeProcessor.cs
- ClientTarget.cs
- TableDesigner.cs
- GraphicsContainer.cs
- ComplexPropertyEntry.cs
- AliasedExpr.cs
- JobInputBins.cs
- PageCatalogPartDesigner.cs
- RegexGroup.cs
- XPathDocument.cs
- NonValidatingSecurityTokenAuthenticator.cs
- TextViewBase.cs
- ContentIterators.cs
- ContainerParagraph.cs
- SessionEndingCancelEventArgs.cs
- ProtocolsSection.cs
- InvalidDataException.cs
- WhiteSpaceTrimStringConverter.cs
- FormViewPageEventArgs.cs
- UserControlBuildProvider.cs
- entityreference_tresulttype.cs
- ReadOnlyDictionary.cs
- CanExecuteRoutedEventArgs.cs
- TextLineBreak.cs
- EditorZone.cs
- ImageMap.cs
- ClientType.cs
- OleDbCommand.cs
- HMACSHA1.cs
- ServiceControllerDesigner.cs
- SelectionWordBreaker.cs
- ConfigXmlSignificantWhitespace.cs
- OrderByExpression.cs
- TaskHelper.cs
- HotSpotCollectionEditor.cs
- HttpModuleActionCollection.cs
- BamlRecordHelper.cs
- CompilerParameters.cs
- entitydatasourceentitysetnameconverter.cs
- SecurityBindingElementImporter.cs
- TogglePattern.cs
- Guid.cs
- WindowsToolbarAsMenu.cs
- TextTreeText.cs
- TypeProvider.cs
- HealthMonitoringSectionHelper.cs
- MediaContextNotificationWindow.cs
- ScriptReference.cs
- AppDomainFactory.cs
- SiteMap.cs
- ToolStripDropDownClosedEventArgs.cs
- ResolvePPIDRequest.cs
- RelationalExpressions.cs
- WebBrowserContainer.cs
- FileSystemEventArgs.cs
- ObjectPersistData.cs
- CodeBlockBuilder.cs
- _StreamFramer.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- XmlSchemaChoice.cs
- SchemaConstraints.cs
- BorderSidesEditor.cs
- PrimitiveOperationFormatter.cs
- PersistChildrenAttribute.cs
- FileInfo.cs
- InfiniteIntConverter.cs
- WindowExtensionMethods.cs
- DaylightTime.cs
- DbException.cs
- TokenBasedSet.cs
- TypedElement.cs