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
- InkCanvasInnerCanvas.cs
- ParallelTimeline.cs
- DataContractSerializerElement.cs
- ScalarOps.cs
- RegexNode.cs
- VerticalAlignConverter.cs
- ImageButton.cs
- securitycriticaldata.cs
- StreamingContext.cs
- RewritingProcessor.cs
- HebrewCalendar.cs
- PropertySourceInfo.cs
- TableLayoutPanel.cs
- InputEventArgs.cs
- DataGridPageChangedEventArgs.cs
- CodeLabeledStatement.cs
- SelectionRange.cs
- CounterSampleCalculator.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- EditorZone.cs
- TimeoutValidationAttribute.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ProfileSection.cs
- MultiDataTrigger.cs
- MobileControlsSection.cs
- AppDomainAttributes.cs
- LinqDataSourceContextEventArgs.cs
- WindowsFormsLinkLabel.cs
- ISAPIWorkerRequest.cs
- MembershipSection.cs
- BufferBuilder.cs
- ScaleTransform.cs
- QueryOperator.cs
- SurrogateSelector.cs
- VoiceObjectToken.cs
- StringResourceManager.cs
- SqlDataSourceFilteringEventArgs.cs
- XmlSortKeyAccumulator.cs
- BatchServiceHost.cs
- latinshape.cs
- PenContexts.cs
- SimpleHandlerBuildProvider.cs
- LinkDescriptor.cs
- InstanceDataCollection.cs
- WebPartMenu.cs
- OdbcReferenceCollection.cs
- TableLayoutPanelBehavior.cs
- ScriptBehaviorDescriptor.cs
- ContainerControlDesigner.cs
- QilScopedVisitor.cs
- DataTableTypeConverter.cs
- DataGridViewColumnTypePicker.cs
- QilDataSource.cs
- TypeUnloadedException.cs
- SystemParameters.cs
- CalendarData.cs
- HttpResponse.cs
- GridViewDeleteEventArgs.cs
- CompilerResults.cs
- FacetValueContainer.cs
- DeviceFilterDictionary.cs
- VScrollBar.cs
- RestHandlerFactory.cs
- InvalidPropValue.cs
- RowParagraph.cs
- RelatedPropertyManager.cs
- DeclarativeCatalogPart.cs
- HitTestWithPointDrawingContextWalker.cs
- HtmlShimManager.cs
- XhtmlBasicCalendarAdapter.cs
- UiaCoreProviderApi.cs
- FilterableAttribute.cs
- ResourcePart.cs
- DesignerForm.cs
- DataGridTable.cs
- XmlAttributes.cs
- Message.cs
- XmlTextWriter.cs
- TriggerCollection.cs
- HtmlInputButton.cs
- IMembershipProvider.cs
- Adorner.cs
- DbProviderManifest.cs
- IndexerReference.cs
- SingleConverter.cs
- printdlgexmarshaler.cs
- Empty.cs
- XmlRootAttribute.cs
- EncoderBestFitFallback.cs
- TextWriter.cs
- _HTTPDateParse.cs
- BasicHttpBindingElement.cs
- DateTimeStorage.cs
- StorageTypeMapping.cs
- Vector3DConverter.cs
- _AutoWebProxyScriptEngine.cs
- InstanceNameConverter.cs
- BCLDebug.cs
- File.cs
- KeyProperty.cs