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 / WebPartTracker.cs / 1 / WebPartTracker.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Drawing.Design; using System.Security.Permissions; using System.Web; using System.Web.UI; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartTracker : IDisposable { private bool _disposed; private WebPart _webPart; private ProviderConnectionPoint _providerConnectionPoint; public WebPartTracker(WebPart webPart, ProviderConnectionPoint providerConnectionPoint) { if (webPart == null) { throw new ArgumentNullException("webPart"); } if (providerConnectionPoint == null) { throw new ArgumentNullException("providerConnectionPoint"); } if (providerConnectionPoint.ControlType != webPart.GetType()) { throw new ArgumentException(SR.GetString(SR.WebPartManager_InvalidConnectionPoint), "providerConnectionPoint"); } _webPart = webPart; _providerConnectionPoint = providerConnectionPoint; if (++Count > 1) { webPart.SetConnectErrorMessage(SR.GetString( SR.WebPartTracker_CircularConnection, _providerConnectionPoint.DisplayName)); } } public bool IsCircularConnection { get { return (Count > 1); } } private int Count { get { int count; _webPart.TrackerCounter.TryGetValue(_providerConnectionPoint, out count); return count; } set { _webPart.TrackerCounter[_providerConnectionPoint] = value; } } void IDisposable.Dispose() { if (!_disposed) { Debug.Assert(Count >= 1); Count--; _disposed = 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.ComponentModel; using System.Diagnostics; using System.Drawing.Design; using System.Security.Permissions; using System.Web; using System.Web.UI; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartTracker : IDisposable { private bool _disposed; private WebPart _webPart; private ProviderConnectionPoint _providerConnectionPoint; public WebPartTracker(WebPart webPart, ProviderConnectionPoint providerConnectionPoint) { if (webPart == null) { throw new ArgumentNullException("webPart"); } if (providerConnectionPoint == null) { throw new ArgumentNullException("providerConnectionPoint"); } if (providerConnectionPoint.ControlType != webPart.GetType()) { throw new ArgumentException(SR.GetString(SR.WebPartManager_InvalidConnectionPoint), "providerConnectionPoint"); } _webPart = webPart; _providerConnectionPoint = providerConnectionPoint; if (++Count > 1) { webPart.SetConnectErrorMessage(SR.GetString( SR.WebPartTracker_CircularConnection, _providerConnectionPoint.DisplayName)); } } public bool IsCircularConnection { get { return (Count > 1); } } private int Count { get { int count; _webPart.TrackerCounter.TryGetValue(_providerConnectionPoint, out count); return count; } set { _webPart.TrackerCounter[_providerConnectionPoint] = value; } } void IDisposable.Dispose() { if (!_disposed) { Debug.Assert(Count >= 1); Count--; _disposed = 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
- InterleavedZipPartStream.cs
- WindowInteropHelper.cs
- BamlLocalizabilityResolver.cs
- BasicAsyncResult.cs
- IndexedGlyphRun.cs
- DesignerEventService.cs
- DataGridColumnCollection.cs
- CallContext.cs
- ZoneIdentityPermission.cs
- OutputCacheEntry.cs
- Group.cs
- UpdateTranslator.cs
- MarkupCompilePass2.cs
- _NegoState.cs
- GridViewDeleteEventArgs.cs
- QilGenerator.cs
- TextDpi.cs
- PropertyRecord.cs
- ThemeDictionaryExtension.cs
- BoundPropertyEntry.cs
- FocusWithinProperty.cs
- InstanceCreationEditor.cs
- AppendHelper.cs
- SystemIdentity.cs
- TransformProviderWrapper.cs
- WorkflowInstanceExtensionManager.cs
- PolyLineSegmentFigureLogic.cs
- ControlCommandSet.cs
- ImageUrlEditor.cs
- SoapSchemaImporter.cs
- ScriptMethodAttribute.cs
- DebugView.cs
- TableLayoutColumnStyleCollection.cs
- PrePostDescendentsWalker.cs
- SqlBuffer.cs
- ClientType.cs
- DataGridViewComboBoxEditingControl.cs
- XmlWrappingReader.cs
- Metadata.cs
- ObjectAssociationEndMapping.cs
- PropertyTab.cs
- DataFormats.cs
- WebPartEventArgs.cs
- PersonalizationAdministration.cs
- XmlSchemaSimpleTypeUnion.cs
- ConfigurationStrings.cs
- TransactionFlowProperty.cs
- BindingExpressionUncommonField.cs
- Property.cs
- CheckBox.cs
- DataGridRelationshipRow.cs
- BinaryObjectReader.cs
- JournalNavigationScope.cs
- xmlsaver.cs
- ExpressionEditorSheet.cs
- OperationAbortedException.cs
- AdRotator.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- WrapperEqualityComparer.cs
- RelationalExpressions.cs
- FunctionUpdateCommand.cs
- AbstractSvcMapFileLoader.cs
- CompilationLock.cs
- MemberRelationshipService.cs
- CompModSwitches.cs
- ValidationPropertyAttribute.cs
- SharingService.cs
- XmlNamespaceMappingCollection.cs
- BinaryNode.cs
- NonParentingControl.cs
- AvTraceDetails.cs
- KeyedCollection.cs
- HelpProvider.cs
- QilGenerator.cs
- NavigationFailedEventArgs.cs
- DesignerProperties.cs
- PeerNameRecord.cs
- ProxyElement.cs
- HMACSHA1.cs
- DocumentViewerBaseAutomationPeer.cs
- DataTrigger.cs
- WebControlAdapter.cs
- VisualProxy.cs
- UserControlBuildProvider.cs
- DbConnectionClosed.cs
- ToolStripPanel.cs
- EmulateRecognizeCompletedEventArgs.cs
- DragCompletedEventArgs.cs
- NameSpaceExtractor.cs
- PopupEventArgs.cs
- TabRenderer.cs
- EmptyEnumerator.cs
- BindValidator.cs
- XmlSchemaInclude.cs
- OutgoingWebResponseContext.cs
- SqlTriggerContext.cs
- HtmlElementEventArgs.cs
- WindowsTreeView.cs
- XpsColorContext.cs
- SecurityException.cs