Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsEventArgs.cs / 1305376 / WebPartConnectionsEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; 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; } } } } // 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
- DesignerSerializerAttribute.cs
- MemoryPressure.cs
- SvcMapFileLoader.cs
- WebErrorHandler.cs
- FactoryRecord.cs
- XmlNamespaceDeclarationsAttribute.cs
- DragStartedEventArgs.cs
- RegexRunnerFactory.cs
- LingerOption.cs
- BorderGapMaskConverter.cs
- PageEventArgs.cs
- SQLRoleProvider.cs
- DataKey.cs
- BindingSource.cs
- CopyEncoder.cs
- EncryptedKeyHashIdentifierClause.cs
- Win32SafeHandles.cs
- RadioButtonAutomationPeer.cs
- DataTrigger.cs
- SQLDateTime.cs
- IntegerValidatorAttribute.cs
- DataMisalignedException.cs
- MultiPageTextView.cs
- ChainedAsyncResult.cs
- EventLogPermissionEntryCollection.cs
- _RequestCacheProtocol.cs
- UserInitiatedRoutedEventPermission.cs
- SrgsSemanticInterpretationTag.cs
- ProviderIncompatibleException.cs
- DataGridViewCellStateChangedEventArgs.cs
- CheckBoxPopupAdapter.cs
- FontUnitConverter.cs
- PriorityBindingExpression.cs
- AssemblyNameUtility.cs
- CodeVariableReferenceExpression.cs
- PageOrientation.cs
- DataGridViewIntLinkedList.cs
- SortDescriptionCollection.cs
- XsltFunctions.cs
- ReadOnlyDataSource.cs
- Vector3DKeyFrameCollection.cs
- EDesignUtil.cs
- Pipe.cs
- URLIdentityPermission.cs
- GenerateTemporaryTargetAssembly.cs
- SvcMapFileLoader.cs
- HitTestWithGeometryDrawingContextWalker.cs
- ButtonBaseAutomationPeer.cs
- TextBox.cs
- Listbox.cs
- X509CertificateCollection.cs
- StorageBasedPackageProperties.cs
- QueryCacheKey.cs
- ReadingWritingEntityEventArgs.cs
- ComponentResourceKeyConverter.cs
- BaseAsyncResult.cs
- PropertyPath.cs
- Graph.cs
- DeleteHelper.cs
- TextBoxLine.cs
- CapabilitiesUse.cs
- AtomicFile.cs
- VersionConverter.cs
- WebResourceUtil.cs
- HMACMD5.cs
- BuildProvidersCompiler.cs
- AdapterSwitches.cs
- GenericAuthenticationEventArgs.cs
- BufferBuilder.cs
- ToolStripPanelRenderEventArgs.cs
- DataGridViewAutoSizeModeEventArgs.cs
- DynamicField.cs
- StorageEndPropertyMapping.cs
- WebPartConnectionsCloseVerb.cs
- MethodBody.cs
- LogicalExpr.cs
- HttpPostClientProtocol.cs
- Vector3DAnimationUsingKeyFrames.cs
- HandleRef.cs
- ControlIdConverter.cs
- StreamResourceInfo.cs
- SqlUtils.cs
- NegatedCellConstant.cs
- Vector3DAnimationBase.cs
- CodeVariableReferenceExpression.cs
- OracleString.cs
- CuspData.cs
- ReliabilityContractAttribute.cs
- ReferencedCollectionType.cs
- WebControlsSection.cs
- Control.cs
- DataGridViewTopRowAccessibleObject.cs
- TextElementAutomationPeer.cs
- ListView.cs
- TextBounds.cs
- Stopwatch.cs
- webbrowsersite.cs
- SignatureToken.cs
- streamingZipPartStream.cs
- ProcessStartInfo.cs