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
- RangeContentEnumerator.cs
- PlatformCulture.cs
- EventLogPermission.cs
- DataGridColumnDropSeparator.cs
- CodeBinaryOperatorExpression.cs
- Model3DGroup.cs
- ApplicationHost.cs
- BitmapEffectGroup.cs
- KeyMatchBuilder.cs
- Helpers.cs
- DivideByZeroException.cs
- XPathExpr.cs
- KerberosRequestorSecurityToken.cs
- CertificateManager.cs
- SqlTransaction.cs
- RightsManagementPermission.cs
- ButtonFieldBase.cs
- AnnotationComponentChooser.cs
- cookiecontainer.cs
- DtrList.cs
- BitmapEffectState.cs
- AssemblyAttributesGoHere.cs
- NotSupportedException.cs
- RuntimeIdentifierPropertyAttribute.cs
- Baml2006KnownTypes.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- IIS7UserPrincipal.cs
- PageSetupDialog.cs
- ContextBase.cs
- CompilerResults.cs
- XmlCodeExporter.cs
- sqlnorm.cs
- DataSysAttribute.cs
- ParseChildrenAsPropertiesAttribute.cs
- DispatcherTimer.cs
- DataGridClipboardHelper.cs
- X509Certificate.cs
- GZipStream.cs
- ConfigurationManagerInternalFactory.cs
- StickyNoteContentControl.cs
- UIElement3D.cs
- SemanticResolver.cs
- cookiecollection.cs
- CollectionViewProxy.cs
- DataGridViewTopLeftHeaderCell.cs
- SelectionItemPattern.cs
- DiscreteKeyFrames.cs
- ErrorFormatter.cs
- CodeIdentifier.cs
- SectionVisual.cs
- TemplateGroupCollection.cs
- ConfigurationSectionGroup.cs
- DBAsyncResult.cs
- XamlClipboardData.cs
- ExpressionPrinter.cs
- MdiWindowListItemConverter.cs
- WebProxyScriptElement.cs
- SingleKeyFrameCollection.cs
- BitmapEffectInput.cs
- WSSecurityJan2004.cs
- TextServicesCompartment.cs
- MetadataSection.cs
- SmtpSection.cs
- InputScopeManager.cs
- SelectionProcessor.cs
- DataGridTableCollection.cs
- MediaElementAutomationPeer.cs
- QueryReaderSettings.cs
- TreeWalker.cs
- SecurityKeyIdentifierClause.cs
- VariableDesigner.xaml.cs
- HtmlInputText.cs
- CorrelationManager.cs
- ComEventsHelper.cs
- MatrixAnimationBase.cs
- AddDataControlFieldDialog.cs
- Timer.cs
- ListViewPagedDataSource.cs
- WindowInteropHelper.cs
- DbConnectionOptions.cs
- ItemCollection.cs
- CodeDomSerializerException.cs
- FileChangesMonitor.cs
- VisualStyleRenderer.cs
- LowerCaseStringConverter.cs
- GradientBrush.cs
- UserInitiatedNavigationPermission.cs
- MaskedTextProvider.cs
- ValidationErrorCollection.cs
- Configuration.cs
- OdbcInfoMessageEvent.cs
- SqlXml.cs
- DesignerToolStripControlHost.cs
- CompilationRelaxations.cs
- ChannelManagerBase.cs
- CellConstantDomain.cs
- DBBindings.cs
- FrameworkEventSource.cs
- Hyperlink.cs
- StoreAnnotationsMap.cs