Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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; } } } // 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.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; } } } // 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
- SharedStatics.cs
- ScriptControlDescriptor.cs
- DataControlButton.cs
- OracleConnection.cs
- MemberMemberBinding.cs
- MDIWindowDialog.cs
- MatrixCamera.cs
- StylusPoint.cs
- OdbcEnvironmentHandle.cs
- FontStretch.cs
- ThicknessAnimationUsingKeyFrames.cs
- ScrollProperties.cs
- DictionarySectionHandler.cs
- Matrix3DConverter.cs
- Base64WriteStateInfo.cs
- AccessedThroughPropertyAttribute.cs
- DoubleAnimationUsingKeyFrames.cs
- PageThemeParser.cs
- CellTreeNodeVisitors.cs
- XmlSchemaAppInfo.cs
- XsdBuildProvider.cs
- HttpHandlersSection.cs
- XPathDocument.cs
- MatrixAnimationUsingPath.cs
- SystemIPGlobalStatistics.cs
- ChannelTokenTypeConverter.cs
- CompositeFontInfo.cs
- DataGridViewButtonColumn.cs
- GridViewCellAutomationPeer.cs
- ColumnTypeConverter.cs
- DocumentReferenceCollection.cs
- WebPartPersonalization.cs
- EdmComplexPropertyAttribute.cs
- handlecollector.cs
- linebase.cs
- FormsAuthentication.cs
- InstanceDataCollectionCollection.cs
- ScrollEventArgs.cs
- EndOfStreamException.cs
- DataServices.cs
- OrderByBuilder.cs
- SynchronizationValidator.cs
- TypeInitializationException.cs
- CodeNamespaceImport.cs
- HtmlInputImage.cs
- DynamicILGenerator.cs
- ReceiveMessageRecord.cs
- IdentifierCollection.cs
- UniqueEventHelper.cs
- TemplateControlCodeDomTreeGenerator.cs
- XmlSubtreeReader.cs
- ConfigurationValidatorAttribute.cs
- Function.cs
- PropertyGridCommands.cs
- Exceptions.cs
- CaretElement.cs
- WebPartMovingEventArgs.cs
- LayoutInformation.cs
- PersonalizationEntry.cs
- Profiler.cs
- ControlAdapter.cs
- ReadWriteObjectLock.cs
- TemplateKey.cs
- RoutedPropertyChangedEventArgs.cs
- DetailsViewModeEventArgs.cs
- VersionedStream.cs
- SqlDataRecord.cs
- DataListItemEventArgs.cs
- columnmapfactory.cs
- ArrangedElement.cs
- HttpConfigurationSystem.cs
- HScrollBar.cs
- CollectionTraceRecord.cs
- InkCanvasFeedbackAdorner.cs
- DataGridViewLinkCell.cs
- BufferedStream.cs
- FormatSelectingMessageInspector.cs
- DataGridComboBoxColumn.cs
- RegistryDataKey.cs
- DropShadowEffect.cs
- SimpleWebHandlerParser.cs
- PseudoWebRequest.cs
- BrowserTree.cs
- ExpressionPrefixAttribute.cs
- SHA512Managed.cs
- EventLogEntry.cs
- ElementMarkupObject.cs
- XpsPartBase.cs
- ActivityTypeResolver.xaml.cs
- PeerCollaborationPermission.cs
- EventMap.cs
- EncryptedData.cs
- HyperLinkColumn.cs
- DisplayInformation.cs
- PathParser.cs
- OverflowException.cs
- ToolTipAutomationPeer.cs
- GcHandle.cs
- IPPacketInformation.cs
- updatecommandorderer.cs