Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- PropertyCondition.cs
- PropertyDescriptorCollection.cs
- _ProxyRegBlob.cs
- Application.cs
- Point3D.cs
- ErrorHandler.cs
- SqlTypeConverter.cs
- OptimalTextSource.cs
- VectorCollection.cs
- PortCache.cs
- SimpleType.cs
- SupportingTokenChannel.cs
- ReachDocumentSequenceSerializer.cs
- BindingExpressionUncommonField.cs
- DateTimeHelper.cs
- Version.cs
- CancellationHandlerDesigner.cs
- MessageQuerySet.cs
- DataControlLinkButton.cs
- Certificate.cs
- ColumnReorderedEventArgs.cs
- ListBox.cs
- ElementHostPropertyMap.cs
- CheckedListBox.cs
- ObjectHandle.cs
- ToolboxItem.cs
- SendMessageChannelCache.cs
- WebBrowserNavigatingEventHandler.cs
- ToolStripDropDownClosedEventArgs.cs
- SAPICategories.cs
- HtmlElementErrorEventArgs.cs
- DBCommand.cs
- ShutDownListener.cs
- PointCollection.cs
- TagMapCollection.cs
- FlatButtonAppearance.cs
- PrintDialog.cs
- TaskFormBase.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- PreservationFileWriter.cs
- VectorCollectionConverter.cs
- AsymmetricKeyExchangeDeformatter.cs
- MemberAccessException.cs
- ByteKeyFrameCollection.cs
- TextDpi.cs
- WindowsPrincipal.cs
- BamlLocalizabilityResolver.cs
- DashStyle.cs
- ButtonBaseDesigner.cs
- HwndSource.cs
- UniqueEventHelper.cs
- XamlToRtfWriter.cs
- VirtualStackFrame.cs
- ComponentDispatcherThread.cs
- SiteMembershipCondition.cs
- SwitchLevelAttribute.cs
- ListViewItem.cs
- BitmapImage.cs
- ChildDocumentBlock.cs
- TextRunProperties.cs
- UIElementCollection.cs
- PasswordDeriveBytes.cs
- InkCanvasFeedbackAdorner.cs
- ControlSerializer.cs
- RangeValueProviderWrapper.cs
- Assert.cs
- FusionWrap.cs
- TemplateLookupAction.cs
- PersonalizationStateInfo.cs
- DelimitedListTraceListener.cs
- PageWrapper.cs
- ZipFileInfo.cs
- TableItemStyle.cs
- IriParsingElement.cs
- ToolStripDropDownClosedEventArgs.cs
- StorageEntityTypeMapping.cs
- ListBoxItemAutomationPeer.cs
- LightweightCodeGenerator.cs
- DiscoveryReferences.cs
- HostSecurityManager.cs
- ProxyHelper.cs
- BuildManagerHost.cs
- ResourcesGenerator.cs
- RepeatBehavior.cs
- DoWhileDesigner.xaml.cs
- RangeBase.cs
- SrgsOneOf.cs
- ObjectSet.cs
- AssociationSet.cs
- RotateTransform3D.cs
- ConfigurationSectionGroupCollection.cs
- SvcMapFileSerializer.cs
- HostExecutionContextManager.cs
- DockingAttribute.cs
- SafeSecurityHandles.cs
- StorageEntityTypeMapping.cs
- HtmlInputPassword.cs
- WinFormsSecurity.cs
- InfoCardRequestException.cs
- ComboBox.cs