Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsCancelEventArgs.cs / 1 / WebPartConnectionsCancelEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class WebPartConnectionsCancelEventArgs : CancelEventArgs { private WebPart _provider; private ProviderConnectionPoint _providerConnectionPoint; private WebPart _consumer; private ConsumerConnectionPoint _consumerConnectionPoint; private WebPartConnection _connection; public WebPartConnectionsCancelEventArgs(WebPart provider, ProviderConnectionPoint providerConnectionPoint, WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint) { // Arguments may be null, when deleting a connection because a part is no longer on the page _provider = provider; _providerConnectionPoint = providerConnectionPoint; _consumer = consumer; _consumerConnectionPoint = consumerConnectionPoint; } public WebPartConnectionsCancelEventArgs(WebPart provider, ProviderConnectionPoint providerConnectionPoint, WebPart consumer, ConsumerConnectionPoint consumerConnectionPoint, WebPartConnection connection) : this(provider, providerConnectionPoint, consumer, consumerConnectionPoint) { _connection = connection; } public WebPartConnection Connection { get { return _connection; } } public WebPart Consumer { get { return _consumer; } } public ConsumerConnectionPoint ConsumerConnectionPoint { get { return _consumerConnectionPoint; } } public WebPart Provider { get { return _provider; } } public ProviderConnectionPoint ProviderConnectionPoint { get { return _providerConnectionPoint; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SelectionProviderWrapper.cs
- Panel.cs
- EmptyStringExpandableObjectConverter.cs
- CodeIdentifier.cs
- _ListenerResponseStream.cs
- SpeechSeg.cs
- RSAPKCS1SignatureDeformatter.cs
- DropDownButton.cs
- SHA256Managed.cs
- LinqExpressionNormalizer.cs
- FormatException.cs
- DbCommandDefinition.cs
- ToolboxItemAttribute.cs
- JulianCalendar.cs
- BuildProviderAppliesToAttribute.cs
- RangeValidator.cs
- RoutedEventArgs.cs
- XpsResourceDictionary.cs
- MatcherBuilder.cs
- EntityUtil.cs
- Matrix3D.cs
- SizeF.cs
- ZipIOLocalFileBlock.cs
- ProfileSection.cs
- DataGridViewRowCollection.cs
- UnsafeNativeMethodsPenimc.cs
- EmptyStringExpandableObjectConverter.cs
- XmlDigitalSignatureProcessor.cs
- FullTrustAssemblyCollection.cs
- CodeCommentStatement.cs
- IndicShape.cs
- ILGenerator.cs
- XmlValueConverter.cs
- DataPagerFieldCommandEventArgs.cs
- PropertyDescriptorComparer.cs
- XPathPatternBuilder.cs
- Filter.cs
- ChangeTracker.cs
- SecurityRuntime.cs
- PropertySet.cs
- RichTextBoxConstants.cs
- SelectionEditingBehavior.cs
- compensatingcollection.cs
- DetailsViewPageEventArgs.cs
- ItemCheckedEvent.cs
- OutputScopeManager.cs
- FileFormatException.cs
- EventLogLink.cs
- PreviewKeyDownEventArgs.cs
- DocumentGridPage.cs
- ComplexBindingPropertiesAttribute.cs
- TextViewSelectionProcessor.cs
- WindowsPrincipal.cs
- Source.cs
- EventLogInformation.cs
- ToolboxComponentsCreatingEventArgs.cs
- EmbeddedMailObject.cs
- SafePointer.cs
- SqlServer2KCompatibilityAnnotation.cs
- SafeFileMapViewHandle.cs
- RemoteTokenFactory.cs
- SafeBitVector32.cs
- CompoundFileStorageReference.cs
- RowParagraph.cs
- Monitor.cs
- SqlXml.cs
- TextViewSelectionProcessor.cs
- EventProviderTraceListener.cs
- TypeSchema.cs
- ClientTargetSection.cs
- HttpRequestContext.cs
- DataFormats.cs
- Polyline.cs
- VirtualPathUtility.cs
- Document.cs
- Timer.cs
- TextTreeTextNode.cs
- DataGridViewLinkCell.cs
- WebPartCancelEventArgs.cs
- EvidenceBase.cs
- StorageTypeMapping.cs
- TextBreakpoint.cs
- SinglePageViewer.cs
- DirectoryNotFoundException.cs
- DoubleLink.cs
- CapabilitiesRule.cs
- EmptyStringExpandableObjectConverter.cs
- DeferrableContent.cs
- PermissionSetEnumerator.cs
- SpAudioStreamWrapper.cs
- HttpClientCertificate.cs
- HttpListenerException.cs
- HtmlDocument.cs
- BitmapEffectInputData.cs
- DataGridViewCellStyleChangedEventArgs.cs
- AttributeProviderAttribute.cs
- ObjectDataSourceStatusEventArgs.cs
- PropertyMapper.cs
- BitmapEncoder.cs
- WorkflowViewStateService.cs