Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HwndAppCommandInputProvider.cs
- FontInfo.cs
- DataGridViewLinkColumn.cs
- SetterBaseCollection.cs
- SequenceNumber.cs
- ResolvedKeyFrameEntry.cs
- TypeLibConverter.cs
- UmAlQuraCalendar.cs
- SmtpNtlmAuthenticationModule.cs
- KeyValuePairs.cs
- SemanticResultKey.cs
- RelatedView.cs
- Sentence.cs
- ListViewGroup.cs
- WasHttpModulesInstallComponent.cs
- HtmlEmptyTagControlBuilder.cs
- VoiceInfo.cs
- TimerEventSubscriptionCollection.cs
- DataGridAddNewRow.cs
- GridViewDesigner.cs
- Rotation3DAnimationUsingKeyFrames.cs
- ObjectIDGenerator.cs
- SlotInfo.cs
- StructureChangedEventArgs.cs
- XPathMultyIterator.cs
- SerialPinChanges.cs
- DataGridAddNewRow.cs
- SafeEventLogWriteHandle.cs
- XhtmlTextWriter.cs
- ThreadStaticAttribute.cs
- ResourceManager.cs
- CompareValidator.cs
- FactoryRecord.cs
- VirtualDirectoryMapping.cs
- ProfilePropertySettings.cs
- SchemaObjectWriter.cs
- CategoryGridEntry.cs
- ConstructorBuilder.cs
- ImageCodecInfoPrivate.cs
- ActiveXHost.cs
- XmlArrayItemAttributes.cs
- CroppedBitmap.cs
- DependencyObjectCodeDomSerializer.cs
- newitemfactory.cs
- COM2PropertyBuilderUITypeEditor.cs
- ByteStorage.cs
- WebMessageEncoderFactory.cs
- MaskedTextProvider.cs
- MetadataHelper.cs
- URLString.cs
- MatchAttribute.cs
- CodeSnippetCompileUnit.cs
- BaseParser.cs
- LinkButton.cs
- NotImplementedException.cs
- RectangleGeometry.cs
- IsolatedStorage.cs
- SpStreamWrapper.cs
- SqlRetyper.cs
- EntitySqlQueryCacheKey.cs
- UITypeEditors.cs
- ScopelessEnumAttribute.cs
- DesignSurfaceEvent.cs
- MutableAssemblyCacheEntry.cs
- SqlSupersetValidator.cs
- ConfigurationUtility.cs
- XmlSerializerAssemblyAttribute.cs
- PrintingPermissionAttribute.cs
- BaseResourcesBuildProvider.cs
- ShapeTypeface.cs
- BamlRecordWriter.cs
- CallContext.cs
- NavigationCommands.cs
- CodeIndexerExpression.cs
- QueryResult.cs
- MenuItemStyle.cs
- CollectionViewGroup.cs
- PropertyBuilder.cs
- XmlAttributeAttribute.cs
- UIElementAutomationPeer.cs
- IDispatchConstantAttribute.cs
- ReferencedAssemblyResolver.cs
- CallContext.cs
- Debug.cs
- Latin1Encoding.cs
- ScaleTransform3D.cs
- TransformerTypeCollection.cs
- FormsAuthenticationModule.cs
- CapacityStreamGeometryContext.cs
- CommonXSendMessage.cs
- EncryptedReference.cs
- TypeReference.cs
- FixedFlowMap.cs
- CodeDirectiveCollection.cs
- MasterPageBuildProvider.cs
- AdapterDictionary.cs
- Utility.cs
- SQLDecimalStorage.cs
- CodeMemberMethod.cs
- MinMaxParagraphWidth.cs