Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypeConverter.cs
- BuildResult.cs
- sqlser.cs
- EventLogEntry.cs
- DefaultEventAttribute.cs
- WhitespaceReader.cs
- FileDialog.cs
- TableLayoutPanel.cs
- InputChannel.cs
- TypeElement.cs
- Exceptions.cs
- TypeToken.cs
- RegistrationServices.cs
- ComboBoxRenderer.cs
- PriorityChain.cs
- CompoundFileDeflateTransform.cs
- XmlReader.cs
- SamlDelegatingWriter.cs
- RepeaterCommandEventArgs.cs
- LookupNode.cs
- SqlLiftWhereClauses.cs
- HandleRef.cs
- BmpBitmapDecoder.cs
- StyleSheetDesigner.cs
- CollectionChangedEventManager.cs
- TypeUnloadedException.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- ScriptControlDescriptor.cs
- DocumentPage.cs
- XmlWrappingWriter.cs
- CharStorage.cs
- HighlightVisual.cs
- HWStack.cs
- Transform.cs
- FixedSOMTextRun.cs
- LongAverageAggregationOperator.cs
- DataGridrowEditEndingEventArgs.cs
- _Win32.cs
- DataTableClearEvent.cs
- CollectionsUtil.cs
- KeyPressEvent.cs
- ListControlBoundActionList.cs
- AssemblyNameProxy.cs
- regiisutil.cs
- SqlCachedBuffer.cs
- DataGridViewTopLeftHeaderCell.cs
- ObjectResult.cs
- SoapSchemaExporter.cs
- CollectionsUtil.cs
- LinearKeyFrames.cs
- Light.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SqlCharStream.cs
- AttributeQuery.cs
- XmlSchemaChoice.cs
- AsyncPostBackTrigger.cs
- DataColumnChangeEvent.cs
- Compiler.cs
- _ScatterGatherBuffers.cs
- MembershipPasswordException.cs
- HostingEnvironmentException.cs
- FormViewModeEventArgs.cs
- basevalidator.cs
- SQLBytes.cs
- DictionaryEntry.cs
- SchemaNamespaceManager.cs
- PrintDocument.cs
- ReversePositionQuery.cs
- InvokeHandlers.cs
- NullableIntAverageAggregationOperator.cs
- InProcStateClientManager.cs
- SpanIndex.cs
- DbProviderFactories.cs
- TimeIntervalCollection.cs
- ToolStripGrip.cs
- DataObjectCopyingEventArgs.cs
- GroupDescription.cs
- XmlnsDictionary.cs
- FileAuthorizationModule.cs
- TextElement.cs
- NullReferenceException.cs
- VBCodeProvider.cs
- TargetParameterCountException.cs
- CrossAppDomainChannel.cs
- RemotingConfigParser.cs
- DocumentGridContextMenu.cs
- Cursor.cs
- PersonalizableTypeEntry.cs
- GlobalizationAssembly.cs
- ObjectDataProvider.cs
- PathSegment.cs
- AssertValidation.cs
- ProcessInfo.cs
- DataGridViewRowHeaderCell.cs
- TraceContextRecord.cs
- DataGridViewColumn.cs
- TagMapCollection.cs
- HttpHandlerActionCollection.cs
- DbParameterCollectionHelper.cs
- EntityDataSourceMemberPath.cs