Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartTransformerCollection.cs / 1 / WebPartTransformerCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartTransformerCollection : CollectionBase { private bool _readOnly; public bool IsReadOnly { get { return _readOnly; } } public WebPartTransformer this[int index] { get { return (WebPartTransformer) List[index]; } set { List[index] = value; } } public int Add(WebPartTransformer transformer) { return List.Add(transformer); } private void CheckReadOnly() { if (_readOnly) { throw new InvalidOperationException(SR.GetString(SR.WebPartTransformerCollection_ReadOnly)); } } public bool Contains(WebPartTransformer transformer) { return List.Contains(transformer); } public void CopyTo(WebPartTransformer[] array, int index) { List.CopyTo(array, index); } public int IndexOf(WebPartTransformer transformer) { return List.IndexOf(transformer); } public void Insert(int index, WebPartTransformer transformer) { List.Insert(index, transformer); } protected override void OnClear() { CheckReadOnly(); base.OnClear(); } protected override void OnInsert(int index, object value) { CheckReadOnly(); if (List.Count > 0) { throw new InvalidOperationException(SR.GetString(SR.WebPartTransformerCollection_NotEmpty)); } base.OnInsert(index, value); } protected override void OnRemove(int index, object value) { CheckReadOnly(); base.OnRemove(index, value); } protected override void OnSet(int index, object oldValue, object newValue) { CheckReadOnly(); base.OnSet(index, oldValue, newValue); } protected override void OnValidate(object value) { base.OnValidate(value); if (value == null) { throw new ArgumentNullException("value", SR.GetString(SR.Collection_CantAddNull)); } if (!(value is WebPartTransformer)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "WebPartTransformer"), "value"); } } public void Remove(WebPartTransformer transformer) { List.Remove(transformer); } internal void SetReadOnly() { _readOnly = true; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExpandSegment.cs
- PopupEventArgs.cs
- TypeBuilder.cs
- CodeDelegateCreateExpression.cs
- GenerateTemporaryTargetAssembly.cs
- DataConnectionHelper.cs
- MessageFilter.cs
- MessageSecurityOverHttp.cs
- DataSource.cs
- GeneratedContractType.cs
- SettingsSection.cs
- TreeView.cs
- XPathBinder.cs
- XPathDocumentNavigator.cs
- HTMLTextWriter.cs
- CasesDictionary.cs
- CredentialManagerDialog.cs
- JpegBitmapEncoder.cs
- XmlBinaryReaderSession.cs
- AutomationElement.cs
- ComplexObject.cs
- XmlConvert.cs
- EnumerableWrapperWeakToStrong.cs
- ResourcePart.cs
- GridViewColumnCollectionChangedEventArgs.cs
- CryptoHandle.cs
- RuntimeConfig.cs
- OleDragDropHandler.cs
- StaticExtension.cs
- DrawTreeNodeEventArgs.cs
- CustomCredentialPolicy.cs
- CompositeControl.cs
- ImageCodecInfoPrivate.cs
- _SslSessionsCache.cs
- CodeAccessSecurityEngine.cs
- DefaultValueMapping.cs
- Axis.cs
- CompilerGeneratedAttribute.cs
- LinkClickEvent.cs
- CreateUserWizardStep.cs
- XPathDocumentBuilder.cs
- smtpconnection.cs
- EventMappingSettingsCollection.cs
- CaseStatementSlot.cs
- XD.cs
- SRGSCompiler.cs
- UInt16.cs
- StringUtil.cs
- EditingCoordinator.cs
- VectorCollectionValueSerializer.cs
- DataSourceBooleanViewSchemaConverter.cs
- TypeConverter.cs
- FormsAuthenticationUserCollection.cs
- XmlMemberMapping.cs
- Transform.cs
- HttpCookieCollection.cs
- StateDesigner.LayoutSelectionGlyph.cs
- ScrollData.cs
- DbConnectionPoolGroupProviderInfo.cs
- MyContact.cs
- RootBrowserWindowProxy.cs
- XmlDocumentFragment.cs
- WebPartTransformerCollection.cs
- SystemColors.cs
- FormViewUpdateEventArgs.cs
- ObfuscationAttribute.cs
- PinnedBufferMemoryStream.cs
- PassportAuthenticationEventArgs.cs
- InfoCardArgumentException.cs
- PrtCap_Public.cs
- GenericsInstances.cs
- ClientTargetSection.cs
- MouseDevice.cs
- NonClientArea.cs
- DoubleConverter.cs
- ListView.cs
- XmlSchemaFacet.cs
- AppDomainUnloadedException.cs
- ExpressionBinding.cs
- ProfilePropertySettings.cs
- GlyphInfoList.cs
- XmlWriterSettings.cs
- CalendarData.cs
- Selection.cs
- AssemblyUtil.cs
- DataGridViewRowPrePaintEventArgs.cs
- UInt32Converter.cs
- CategoryEditor.cs
- WindowsGraphics.cs
- CodeStatementCollection.cs
- ConstantProjectedSlot.cs
- DesignTimeTemplateParser.cs
- LayoutUtils.cs
- GetPolicyDetailsRequest.cs
- SQLInt16.cs
- WebServiceHostFactory.cs
- SqlDataSource.cs
- RecognizedPhrase.cs
- ResourceContainer.cs
- PackageFilter.cs