Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsEventArgs.cs / 1 / WebPartConnectionsEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class WebPartConnectionsEventArgs : EventArgs { private WebPart _provider; private ProviderConnectionPoint _providerConnectionPoint; private WebPart _consumer; private ConsumerConnectionPoint _consumerConnectionPoint; private WebPartConnection _connection; public WebPartConnectionsEventArgs(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 WebPartConnectionsEventArgs(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
- BaseTemplateBuildProvider.cs
- WCFServiceClientProxyGenerator.cs
- WindowsGraphics.cs
- TypeHelper.cs
- RoleGroupCollection.cs
- BitmapEffectGroup.cs
- WinEventTracker.cs
- securitycriticaldataformultiplegetandset.cs
- StateMachineWorkflowDesigner.cs
- ServiceRoute.cs
- DataKey.cs
- _DomainName.cs
- ContainerUIElement3D.cs
- SafeCryptoHandles.cs
- DataBindingExpressionBuilder.cs
- ToolStripItemGlyph.cs
- AudioFileOut.cs
- FolderLevelBuildProviderCollection.cs
- FillBehavior.cs
- MarkedHighlightComponent.cs
- ObjectStateEntry.cs
- HwndMouseInputProvider.cs
- TrackingLocation.cs
- ImageMap.cs
- OracleInternalConnection.cs
- VerificationAttribute.cs
- MenuItem.cs
- UpdateRecord.cs
- BinaryObjectReader.cs
- UdpReplyToBehavior.cs
- DesignTimeParseData.cs
- UITypeEditor.cs
- Selector.cs
- TriggerCollection.cs
- UnauthorizedAccessException.cs
- CellParagraph.cs
- QuaternionRotation3D.cs
- EditBehavior.cs
- GeneralTransform2DTo3DTo2D.cs
- HighContrastHelper.cs
- Soap12ProtocolImporter.cs
- SmtpSection.cs
- ClientTarget.cs
- CalendarKeyboardHelper.cs
- Debug.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- ExpressionBindings.cs
- PersonalizationEntry.cs
- _ListenerRequestStream.cs
- FixedSOMGroup.cs
- GacUtil.cs
- IndexerNameAttribute.cs
- TransformerConfigurationWizardBase.cs
- HttpCachePolicy.cs
- ProcessHost.cs
- QueryOpeningEnumerator.cs
- Panel.cs
- LinkButton.cs
- EntityViewGenerationAttribute.cs
- InputGestureCollection.cs
- DesignerActionVerbItem.cs
- XsltLibrary.cs
- SoapAttributeAttribute.cs
- PeerInputChannelListener.cs
- SerializationInfo.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- LateBoundBitmapDecoder.cs
- UnsafeNativeMethods.cs
- FileUpload.cs
- CaretElement.cs
- DaylightTime.cs
- StringResourceManager.cs
- FileDetails.cs
- PerfCounterSection.cs
- IndexedEnumerable.cs
- HttpModuleActionCollection.cs
- InstanceDataCollectionCollection.cs
- AutomationIdentifier.cs
- CustomAssemblyResolver.cs
- Brush.cs
- Decoder.cs
- WindowsRegion.cs
- RedistVersionInfo.cs
- UnsafeNativeMethods.cs
- EntityDataSourceSelectedEventArgs.cs
- sqlnorm.cs
- FileDialog.cs
- SelectionChangedEventArgs.cs
- ObjectManager.cs
- NamespaceQuery.cs
- TypefaceMetricsCache.cs
- OperationExecutionFault.cs
- CompoundFileStorageReference.cs
- LayoutEditorPart.cs
- XPathItem.cs
- XmlUrlResolver.cs
- CheckBoxAutomationPeer.cs
- PropertyBuilder.cs
- UICuesEvent.cs
- ButtonChrome.cs