Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / xsp / System / Web / Extensions / ui / UpdatePanelTriggerCollection.cs / 1 / UpdatePanelTriggerCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Web; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal) ] public class UpdatePanelTriggerCollection : Collection{ private bool _initialized; private UpdatePanel _owner; public UpdatePanelTriggerCollection(UpdatePanel owner) { if (owner == null) { throw new ArgumentNullException("owner"); } _owner = owner; } public UpdatePanel Owner { get { return _owner; } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void ClearItems() { foreach (UpdatePanelTrigger trigger in this) { trigger.SetOwner(null); } base.ClearItems(); } internal bool HasTriggered() { foreach (UpdatePanelTrigger trigger in this) { if (trigger.HasTriggered()) { return true; } } return false; } internal void Initialize() { foreach (UpdatePanelTrigger trigger in this) { trigger.Initialize(); } _initialized = true; } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void InsertItem(int index, UpdatePanelTrigger item) { item.SetOwner(Owner); if (_initialized) { item.Initialize(); } base.InsertItem(index, item); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void RemoveItem(int index) { this[index].SetOwner(null); base.RemoveItem(index); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void SetItem(int index, UpdatePanelTrigger item) { this[index].SetOwner(null); item.SetOwner(Owner); if (_initialized) { item.Initialize(); } base.SetItem(index, item); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections.ObjectModel; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Web; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal) ] public class UpdatePanelTriggerCollection : Collection{ private bool _initialized; private UpdatePanel _owner; public UpdatePanelTriggerCollection(UpdatePanel owner) { if (owner == null) { throw new ArgumentNullException("owner"); } _owner = owner; } public UpdatePanel Owner { get { return _owner; } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void ClearItems() { foreach (UpdatePanelTrigger trigger in this) { trigger.SetOwner(null); } base.ClearItems(); } internal bool HasTriggered() { foreach (UpdatePanelTrigger trigger in this) { if (trigger.HasTriggered()) { return true; } } return false; } internal void Initialize() { foreach (UpdatePanelTrigger trigger in this) { trigger.Initialize(); } _initialized = true; } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void InsertItem(int index, UpdatePanelTrigger item) { item.SetOwner(Owner); if (_initialized) { item.Initialize(); } base.InsertItem(index, item); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void RemoveItem(int index) { this[index].SetOwner(null); base.RemoveItem(index); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] protected override void SetItem(int index, UpdatePanelTrigger item) { this[index].SetOwner(null); item.SetOwner(Owner); if (_initialized) { item.Initialize(); } base.SetItem(index, item); } } } // 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
- ContextStaticAttribute.cs
- RadioButtonPopupAdapter.cs
- ImageCollectionEditor.cs
- Int16KeyFrameCollection.cs
- CaseStatement.cs
- CompiledELinqQueryState.cs
- ScriptControl.cs
- UnescapedXmlDiagnosticData.cs
- SqlNotificationRequest.cs
- LightweightEntityWrapper.cs
- LoginNameDesigner.cs
- Validator.cs
- _NestedMultipleAsyncResult.cs
- MemoryResponseElement.cs
- SqlUserDefinedAggregateAttribute.cs
- GridViewHeaderRowPresenter.cs
- SqlOuterApplyReducer.cs
- AsymmetricAlgorithm.cs
- XmlUrlResolver.cs
- RepeatBehaviorConverter.cs
- WebPartDescriptionCollection.cs
- AppDomainUnloadedException.cs
- COAUTHIDENTITY.cs
- WinInet.cs
- StreamMarshaler.cs
- AuthenticationServiceManager.cs
- EntitySqlQueryCacheEntry.cs
- BuilderElements.cs
- ConnectionStringSettings.cs
- HttpRequestCacheValidator.cs
- SQLGuid.cs
- XmlEntityReference.cs
- MultiPageTextView.cs
- Pair.cs
- CodeTypeReferenceCollection.cs
- ListViewDataItem.cs
- WS2007HttpBinding.cs
- OracleInfoMessageEventArgs.cs
- SessionStateItemCollection.cs
- HtmlForm.cs
- SqlInternalConnectionTds.cs
- ArgIterator.cs
- SiteMapPath.cs
- TwoPhaseCommit.cs
- SchemaNamespaceManager.cs
- returneventsaver.cs
- PrimitiveXmlSerializers.cs
- TreeNodeBinding.cs
- DependencyObjectValidator.cs
- Image.cs
- IdleTimeoutMonitor.cs
- CompatibleComparer.cs
- DataControlFieldHeaderCell.cs
- DataRowExtensions.cs
- KeyTime.cs
- nulltextcontainer.cs
- HiddenFieldPageStatePersister.cs
- AssemblyBuilder.cs
- ObjectDataSourceEventArgs.cs
- CancelEventArgs.cs
- GetKeyedHashRequest.cs
- QueryInterceptorAttribute.cs
- ScrollBarRenderer.cs
- WebColorConverter.cs
- TemplateControlBuildProvider.cs
- DebuggerAttributes.cs
- ContainerUIElement3D.cs
- XPathEmptyIterator.cs
- WebPartDescription.cs
- ServiceOperation.cs
- WebPartActionVerb.cs
- PrintPageEvent.cs
- Camera.cs
- ListViewContainer.cs
- CodeBlockBuilder.cs
- CheckoutException.cs
- StrongNameMembershipCondition.cs
- WhitespaceReader.cs
- PointUtil.cs
- ObjectTag.cs
- StrokeNodeOperations.cs
- TrackingRecord.cs
- SqlInternalConnectionTds.cs
- MappingModelBuildProvider.cs
- XmlSchemaAttribute.cs
- OdbcDataReader.cs
- MethodCallTranslator.cs
- ToolStripControlHost.cs
- DeviceContext.cs
- SessionStateItemCollection.cs
- BuildManager.cs
- CharAnimationUsingKeyFrames.cs
- Schema.cs
- ReaderWriterLockWrapper.cs
- EventMappingSettings.cs
- WindowsSlider.cs
- ClickablePoint.cs
- FactoryGenerator.cs
- AndAlso.cs
- KnownTypeDataContractResolver.cs