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
- SqlXmlStorage.cs
- ToolStripContainer.cs
- GetPageCompletedEventArgs.cs
- TemplatedWizardStep.cs
- DateTimeOffset.cs
- SqlEnums.cs
- HashAlgorithm.cs
- ImportCatalogPart.cs
- CodeMemberField.cs
- FactoryMaker.cs
- BindingFormattingDialog.cs
- ImageCollectionCodeDomSerializer.cs
- IdentifierCollection.cs
- XsltInput.cs
- WsdlInspector.cs
- XmlArrayItemAttribute.cs
- BaseCAMarshaler.cs
- SplitterDesigner.cs
- TemplateBamlRecordReader.cs
- SQLBinary.cs
- CodeIndexerExpression.cs
- WebScriptMetadataMessage.cs
- DefaultShape.cs
- SafeViewOfFileHandle.cs
- PtsContext.cs
- XmlCustomFormatter.cs
- ScrollPatternIdentifiers.cs
- PageContentCollection.cs
- HasCopySemanticsAttribute.cs
- SemaphoreSlim.cs
- DocComment.cs
- dbdatarecord.cs
- HttpContextWrapper.cs
- CaseCqlBlock.cs
- Int32CAMarshaler.cs
- ImageButton.cs
- SolidColorBrush.cs
- AttributeSetAction.cs
- WebAdminConfigurationHelper.cs
- CFGGrammar.cs
- MatrixTransform3D.cs
- InternalEnumValidatorAttribute.cs
- XmlReaderSettings.cs
- BitmapVisualManager.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- VariantWrapper.cs
- WebDisplayNameAttribute.cs
- Base64Encoder.cs
- DBSqlParserColumn.cs
- HandlerFactoryWrapper.cs
- ExpressionPrinter.cs
- ComboBox.cs
- RefreshPropertiesAttribute.cs
- VarRefManager.cs
- DoubleLinkList.cs
- DBSchemaRow.cs
- ComponentCollection.cs
- DesignColumn.cs
- ProtectedConfigurationSection.cs
- TransactionBehavior.cs
- CodeNamespaceImportCollection.cs
- WebHostedComPlusServiceHost.cs
- MimeMapping.cs
- CorrelationManager.cs
- CompatibleComparer.cs
- IPeerNeighbor.cs
- DataPagerField.cs
- Panel.cs
- Model3D.cs
- TableParagraph.cs
- MetaDataInfo.cs
- StatusBarPanel.cs
- XPathNavigatorKeyComparer.cs
- _ShellExpression.cs
- ImageSource.cs
- ReachNamespaceInfo.cs
- LogicalTreeHelper.cs
- SystemNetworkInterface.cs
- ComboBox.cs
- ObjectDataSourceDisposingEventArgs.cs
- ToolboxBitmapAttribute.cs
- ClipboardData.cs
- NegotiateStream.cs
- XmlSerializationWriter.cs
- RegexInterpreter.cs
- SectionVisual.cs
- UserNamePasswordValidator.cs
- EventBookmark.cs
- MemberMaps.cs
- Header.cs
- SqlRewriteScalarSubqueries.cs
- ReflectionPermission.cs
- FloaterBaseParagraph.cs
- SQLInt16.cs
- WsdlParser.cs
- DependencyObjectType.cs
- xml.cs
- EpmCustomContentDeSerializer.cs
- Button.cs
- XmlCDATASection.cs