Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ConfigXmlWhitespace.cs
- AsymmetricKeyExchangeFormatter.cs
- File.cs
- VarInfo.cs
- ImmutableObjectAttribute.cs
- IdentityManager.cs
- MultipartContentParser.cs
- PrimitiveDataContract.cs
- _HeaderInfoTable.cs
- WebPartDeleteVerb.cs
- OleDbTransaction.cs
- FileSecurity.cs
- ExternalException.cs
- SerializationInfo.cs
- Component.cs
- Property.cs
- SchemaNames.cs
- Native.cs
- ApplicationManager.cs
- ConfigViewGenerator.cs
- SineEase.cs
- SecurityElement.cs
- ToolStripContainer.cs
- SiteMapDataSourceView.cs
- ControlSerializer.cs
- webeventbuffer.cs
- ApplicationDirectoryMembershipCondition.cs
- DetailsViewModeEventArgs.cs
- PropertyFilter.cs
- IdentifierService.cs
- SimpleNameService.cs
- ZoneLinkButton.cs
- MsmqMessageProperty.cs
- DataServiceProviderMethods.cs
- Pen.cs
- SqlDataSourceStatusEventArgs.cs
- OleDbInfoMessageEvent.cs
- XmlElementAttributes.cs
- GPStream.cs
- EntityStoreSchemaGenerator.cs
- Operand.cs
- OneOfConst.cs
- VirtualizingStackPanel.cs
- Error.cs
- DynamicUpdateCommand.cs
- SafeMemoryMappedViewHandle.cs
- TextBoxRenderer.cs
- SoapMessage.cs
- RegisteredScript.cs
- CompositeScriptReference.cs
- DataGridViewHeaderCell.cs
- PeerObject.cs
- SchemaCollectionCompiler.cs
- XmlDocumentType.cs
- ISAPIWorkerRequest.cs
- EndpointNotFoundException.cs
- InspectionWorker.cs
- Query.cs
- XmlEncodedRawTextWriter.cs
- StringResourceManager.cs
- SafeNativeMethods.cs
- CompoundFileIOPermission.cs
- CollectionDataContractAttribute.cs
- StateChangeEvent.cs
- WindowsListView.cs
- UdpTransportSettingsElement.cs
- RuleConditionDialog.cs
- OleDbError.cs
- CategoryEditor.cs
- WindowsToolbarItemAsMenuItem.cs
- ToolTipService.cs
- WebPartCloseVerb.cs
- VirtualDirectoryMappingCollection.cs
- SymbolTable.cs
- XmlnsCompatibleWithAttribute.cs
- WebPermission.cs
- PostBackTrigger.cs
- InvokeGenerator.cs
- XamlSerializerUtil.cs
- IItemProperties.cs
- SqlCacheDependencyDatabaseCollection.cs
- EntityDataSourceValidationException.cs
- ToolStripControlHost.cs
- PeerObject.cs
- ProtocolsSection.cs
- EFColumnProvider.cs
- DisableDpiAwarenessAttribute.cs
- CodeValidator.cs
- ListItemCollection.cs
- UrlPropertyAttribute.cs
- SmtpLoginAuthenticationModule.cs
- CodeThrowExceptionStatement.cs
- SspiHelper.cs
- RichTextBox.cs
- control.ime.cs
- OpenTypeCommon.cs
- MailDefinition.cs
- ResourceAssociationSet.cs
- WinFormsComponentEditor.cs
- ObjectTypeMapping.cs