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
- CodeParameterDeclarationExpression.cs
- WebPartMinimizeVerb.cs
- ResourceDisplayNameAttribute.cs
- CalendarTable.cs
- Membership.cs
- ForceCopyBuildProvider.cs
- AssemblyBuilderData.cs
- cookiecontainer.cs
- RecognizedPhrase.cs
- LoadedOrUnloadedOperation.cs
- SymbolType.cs
- EDesignUtil.cs
- BigIntegerStorage.cs
- ColorBlend.cs
- SoapClientProtocol.cs
- PopupEventArgs.cs
- StorageEndPropertyMapping.cs
- DrawingServices.cs
- AppDomainManager.cs
- RegexStringValidator.cs
- LayoutDump.cs
- SqlTriggerAttribute.cs
- SelectionEditingBehavior.cs
- ThreadAttributes.cs
- IdentityModelStringsVersion1.cs
- VisualStyleElement.cs
- DataColumnMappingCollection.cs
- TimeZone.cs
- DataGridViewEditingControlShowingEventArgs.cs
- DesignerOptionService.cs
- ListParaClient.cs
- ManipulationInertiaStartingEventArgs.cs
- _Win32.cs
- ClientData.cs
- RelationshipDetailsRow.cs
- _UncName.cs
- DataObject.cs
- ToolBarPanel.cs
- RIPEMD160.cs
- StoreAnnotationsMap.cs
- Int64Animation.cs
- X509AsymmetricSecurityKey.cs
- InternalTypeHelper.cs
- TdsRecordBufferSetter.cs
- StrongTypingException.cs
- WebPageTraceListener.cs
- MSG.cs
- ImageClickEventArgs.cs
- TrustManager.cs
- UnsafeNativeMethodsCLR.cs
- Decoder.cs
- SignedPkcs7.cs
- CultureTable.cs
- Win32.cs
- SecurityDocument.cs
- FieldAccessException.cs
- ModelFunctionTypeElement.cs
- EntityRecordInfo.cs
- _NativeSSPI.cs
- FamilyMapCollection.cs
- ProgressBar.cs
- SqlDataSource.cs
- NamespaceInfo.cs
- XmlSerializer.cs
- FormClosedEvent.cs
- RC2CryptoServiceProvider.cs
- EntryWrittenEventArgs.cs
- LabelLiteral.cs
- URLAttribute.cs
- SingleStorage.cs
- StaticExtensionConverter.cs
- ManifestResourceInfo.cs
- InheritanceService.cs
- UpdateCommand.cs
- TextEffectResolver.cs
- AstNode.cs
- Control.cs
- ContentHostHelper.cs
- JournalEntryStack.cs
- basemetadatamappingvisitor.cs
- SynchronousChannelMergeEnumerator.cs
- CategoryGridEntry.cs
- AssemblyName.cs
- BatchParser.cs
- ClientConfigurationSystem.cs
- FloaterBaseParaClient.cs
- DataSourceXmlElementAttribute.cs
- OdbcCommand.cs
- CodeTypeReferenceCollection.cs
- CodeIterationStatement.cs
- XsltQilFactory.cs
- FrameworkElementFactory.cs
- MemberRelationshipService.cs
- DataSysAttribute.cs
- UrlPropertyAttribute.cs
- MsiStyleLogWriter.cs
- Partitioner.cs
- FixedTextSelectionProcessor.cs
- NavigationCommands.cs
- ImageAutomationPeer.cs