Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartTransformerCollection.cs / 1305376 / WebPartTransformerCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; 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; } } } // 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
- HandleExceptionArgs.cs
- OutputCacheProfile.cs
- XmlSchemaAnnotated.cs
- FixedSOMContainer.cs
- ScrollProperties.cs
- PartManifestEntry.cs
- XamlFilter.cs
- CmsInterop.cs
- SubclassTypeValidator.cs
- AccessorTable.cs
- WsatConfiguration.cs
- _UncName.cs
- MimeReflector.cs
- WinEventTracker.cs
- ScriptIgnoreAttribute.cs
- SourceFileBuildProvider.cs
- ExtensibleClassFactory.cs
- HTTP_SERVICE_CONFIG_URLACL_KEY.cs
- Exceptions.cs
- Preprocessor.cs
- BindingExpressionBase.cs
- DbMetaDataFactory.cs
- ServicePoint.cs
- CmsUtils.cs
- AnonymousIdentificationSection.cs
- SmiSettersStream.cs
- TextAutomationPeer.cs
- DataServiceProviderMethods.cs
- MetadataPropertyCollection.cs
- MexNamedPipeBindingElement.cs
- HttpHandlerActionCollection.cs
- CompilerLocalReference.cs
- SmtpException.cs
- PageAsyncTask.cs
- PopOutPanel.cs
- InstanceLockTracking.cs
- SubstitutionList.cs
- ThousandthOfEmRealDoubles.cs
- HelpKeywordAttribute.cs
- DataSourceView.cs
- AssociationTypeEmitter.cs
- ArgumentDirectionHelper.cs
- DetailsViewUpdateEventArgs.cs
- CommandValueSerializer.cs
- EUCJPEncoding.cs
- ClientSettingsSection.cs
- IndentedWriter.cs
- DesignerActionGlyph.cs
- Int32Animation.cs
- Timeline.cs
- SchemaMapping.cs
- DateTimeParse.cs
- ResolveDuplexAsyncResult.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- GridItemPattern.cs
- ImageAnimator.cs
- DataGridViewCellFormattingEventArgs.cs
- MouseButton.cs
- ReflectionTypeLoadException.cs
- BitmapSizeOptions.cs
- BaseCollection.cs
- TypeName.cs
- Vector3DAnimationBase.cs
- Int16.cs
- SystemKeyConverter.cs
- KeyedHashAlgorithm.cs
- ClaimTypes.cs
- CollectionViewGroupInternal.cs
- COM2FontConverter.cs
- MultiTrigger.cs
- DateTimePicker.cs
- AuthenticationModuleElementCollection.cs
- WebDescriptionAttribute.cs
- Logging.cs
- FilteredSchemaElementLookUpTable.cs
- ExpandedProjectionNode.cs
- WebSysDescriptionAttribute.cs
- WindowsGrip.cs
- XpsFixedDocumentSequenceReaderWriter.cs
- Page.cs
- TraceHwndHost.cs
- SymbolMethod.cs
- UrlMappingsSection.cs
- ValidationRule.cs
- WindowsNonControl.cs
- ConsumerConnectionPoint.cs
- NativeMethods.cs
- Blend.cs
- HtmlInputCheckBox.cs
- DbTransaction.cs
- RepeatButton.cs
- DeflateStream.cs
- UniqueConstraint.cs
- Transform.cs
- FormatConvertedBitmap.cs
- PolyBezierSegmentFigureLogic.cs
- CornerRadius.cs
- InputScopeNameConverter.cs
- CallContext.cs
- PTConverter.cs