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 / 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
- AttachedProperty.cs
- BuildManager.cs
- TreeViewEvent.cs
- Canonicalizers.cs
- FigureParaClient.cs
- _ServiceNameStore.cs
- MessageOperationFormatter.cs
- SiteMap.cs
- CodeIterationStatement.cs
- DbConnectionInternal.cs
- XmlPreloadedResolver.cs
- Label.cs
- Timer.cs
- ExpressionList.cs
- FindProgressChangedEventArgs.cs
- ParsedAttributeCollection.cs
- Converter.cs
- SystemIPGlobalProperties.cs
- AsyncResult.cs
- FontConverter.cs
- RoutedEventConverter.cs
- EntityDataSourceContextDisposingEventArgs.cs
- UICuesEvent.cs
- DetailsViewDeleteEventArgs.cs
- Journaling.cs
- StyleCollection.cs
- RelationshipEndMember.cs
- ContextStaticAttribute.cs
- CalendarButtonAutomationPeer.cs
- ServiceNotStartedException.cs
- Command.cs
- MappableObjectManager.cs
- SQLMoney.cs
- PKCS1MaskGenerationMethod.cs
- RelationshipWrapper.cs
- SettingsSection.cs
- XmlNamespaceMapping.cs
- BitmapEffectInputData.cs
- SerializationInfoEnumerator.cs
- InputScope.cs
- DataShape.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- ByteStorage.cs
- EditorPartChrome.cs
- ComponentManagerBroker.cs
- ImportCatalogPart.cs
- HttpAsyncResult.cs
- ReadOnlyHierarchicalDataSourceView.cs
- Int64KeyFrameCollection.cs
- SectionXmlInfo.cs
- UserControlFileEditor.cs
- DispatcherBuilder.cs
- QueryContinueDragEventArgs.cs
- Point4DValueSerializer.cs
- ImagingCache.cs
- WebEventTraceProvider.cs
- IApplicationTrustManager.cs
- XPathAxisIterator.cs
- TreeNodeStyleCollection.cs
- SecuritySessionSecurityTokenAuthenticator.cs
- DescendantOverDescendantQuery.cs
- ControlEvent.cs
- ReadOnlyDictionary.cs
- WSSecurityTokenSerializer.cs
- CapabilitiesSection.cs
- SqlBuilder.cs
- BasicExpressionVisitor.cs
- WebRequestModuleElement.cs
- TimelineGroup.cs
- BlockCollection.cs
- SessionEndingEventArgs.cs
- CodeSubDirectoriesCollection.cs
- DelegateTypeInfo.cs
- RequestDescription.cs
- MimeObjectFactory.cs
- ListBoxAutomationPeer.cs
- externdll.cs
- Activity.cs
- EndpointAddressMessageFilter.cs
- ImportOptions.cs
- StylusTip.cs
- RequiredFieldValidator.cs
- CssClassPropertyAttribute.cs
- ColumnHeaderCollectionEditor.cs
- Compilation.cs
- LocationSectionRecord.cs
- RegexCapture.cs
- CompensatableTransactionScopeActivityDesigner.cs
- ClientApiGenerator.cs
- PrivateFontCollection.cs
- XmlSerializerVersionAttribute.cs
- PassportIdentity.cs
- CryptoStream.cs
- ClientEndpointLoader.cs
- FindCriteria.cs
- TextBoxAutomationPeer.cs
- ObjectTypeMapping.cs
- WindowInteropHelper.cs
- ConvertersCollection.cs
- ListViewPagedDataSource.cs