Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ParserExtension.cs
- CloseCollectionAsyncResult.cs
- ServiceOperation.cs
- SqlGatherProducedAliases.cs
- CommonXSendMessage.cs
- IsolatedStorageFilePermission.cs
- MenuScrollingVisibilityConverter.cs
- BinarySerializer.cs
- AxisAngleRotation3D.cs
- ButtonRenderer.cs
- SpeechEvent.cs
- ExtendedPropertyCollection.cs
- PrintDialog.cs
- AccessDataSourceView.cs
- Sql8ExpressionRewriter.cs
- BuildManagerHost.cs
- SpellerError.cs
- DivideByZeroException.cs
- CodeObject.cs
- PropertyInfoSet.cs
- infer.cs
- EntityWithKeyStrategy.cs
- GridViewRowPresenter.cs
- ChtmlTextWriter.cs
- CodeIdentifier.cs
- UpdateProgress.cs
- CertificateManager.cs
- MsmqIntegrationSecurity.cs
- TargetControlTypeCache.cs
- RegexRunner.cs
- ObjectTag.cs
- WindowsIPAddress.cs
- WebPartConnectionsConnectVerb.cs
- DiscoveryMessageSequence.cs
- TcpHostedTransportConfiguration.cs
- GenericWebPart.cs
- DataSourceView.cs
- XmlSchemaObjectTable.cs
- PriorityChain.cs
- ModulesEntry.cs
- Section.cs
- WindowsNonControl.cs
- AudioSignalProblemOccurredEventArgs.cs
- SetStateEventArgs.cs
- TagMapInfo.cs
- DocumentPageViewAutomationPeer.cs
- ExtentCqlBlock.cs
- EntityClassGenerator.cs
- HttpCachePolicyElement.cs
- SafeReadContext.cs
- AnnotationHighlightLayer.cs
- MiniLockedBorderGlyph.cs
- AnnouncementEventArgs.cs
- ChildTable.cs
- XPathDocumentIterator.cs
- ResourceDisplayNameAttribute.cs
- ToggleProviderWrapper.cs
- UITypeEditor.cs
- ScaleTransform.cs
- DocumentPageHost.cs
- ProxyElement.cs
- ZipPackagePart.cs
- ConfigPathUtility.cs
- OracleBinary.cs
- recordstate.cs
- ContractBase.cs
- SimpleTextLine.cs
- StorageEndPropertyMapping.cs
- QilXmlReader.cs
- DataServiceConfiguration.cs
- FixedFindEngine.cs
- _SingleItemRequestCache.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ErrorFormatter.cs
- SqlFileStream.cs
- HttpResponseInternalWrapper.cs
- FontDriver.cs
- XmlSchemaSubstitutionGroup.cs
- GridViewRowPresenterBase.cs
- Attributes.cs
- DesignerHelpers.cs
- MeasurementDCInfo.cs
- EditBehavior.cs
- AtomContentProperty.cs
- DbRetry.cs
- messageonlyhwndwrapper.cs
- DockProviderWrapper.cs
- Visual.cs
- SHA1Cng.cs
- DataGridViewSortCompareEventArgs.cs
- TimelineGroup.cs
- CngAlgorithm.cs
- DataGridViewCellValidatingEventArgs.cs
- ListViewHitTestInfo.cs
- SecureConversationServiceCredential.cs
- ModelVisual3D.cs
- AlphabetConverter.cs
- SamlSubjectStatement.cs
- InlineObject.cs
- EventLogQuery.cs