Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TransformProviderWrapper.cs
- Token.cs
- XmlTextReaderImpl.cs
- MenuTracker.cs
- BooleanStorage.cs
- NativeMethods.cs
- SafeNativeMethods.cs
- Button.cs
- log.cs
- ListView.cs
- RelativeSource.cs
- HttpPostLocalhostServerProtocol.cs
- PreservationFileWriter.cs
- LineBreakRecord.cs
- ReflectionHelper.cs
- BuilderElements.cs
- RsaElement.cs
- Part.cs
- FilterRepeater.cs
- SiteOfOriginPart.cs
- WindowsIPAddress.cs
- SmiXetterAccessMap.cs
- HtmlTableRowCollection.cs
- PointAnimation.cs
- Environment.cs
- ManipulationLogic.cs
- RIPEMD160.cs
- ObjectViewFactory.cs
- CheckBoxAutomationPeer.cs
- CompositeCollection.cs
- DataTableReader.cs
- FloaterParagraph.cs
- MimeMapping.cs
- thaishape.cs
- SystemIPInterfaceStatistics.cs
- ObjectItemCachedAssemblyLoader.cs
- DBSqlParserColumnCollection.cs
- TextWriterTraceListener.cs
- ZoneButton.cs
- DetailsViewModeEventArgs.cs
- HttpCachePolicy.cs
- JavaScriptObjectDeserializer.cs
- GroupBoxAutomationPeer.cs
- ControlPropertyNameConverter.cs
- DataPager.cs
- EdmType.cs
- AnnotationResource.cs
- ScrollBarRenderer.cs
- DBConnection.cs
- CompModSwitches.cs
- ProviderConnectionPointCollection.cs
- KeySpline.cs
- DigestTraceRecordHelper.cs
- EnumConverter.cs
- HelpEvent.cs
- EntityModelBuildProvider.cs
- MarginsConverter.cs
- SqlClientMetaDataCollectionNames.cs
- WebResponse.cs
- ValidationErrorCollection.cs
- Baml6Assembly.cs
- DESCryptoServiceProvider.cs
- ConfigErrorGlyph.cs
- EntityConnectionStringBuilderItem.cs
- CodeDirectoryCompiler.cs
- UseLicense.cs
- Cursor.cs
- NameValueFileSectionHandler.cs
- PackageRelationshipSelector.cs
- EncoderParameters.cs
- DrawingAttributeSerializer.cs
- dataprotectionpermissionattribute.cs
- ComponentConverter.cs
- MatcherBuilder.cs
- BitmapFrameEncode.cs
- SessionStateContainer.cs
- PreviewPrintController.cs
- RegexEditorDialog.cs
- StringPropertyBuilder.cs
- SAPIEngineTypes.cs
- CommonGetThemePartSize.cs
- RestHandlerFactory.cs
- ScriptResourceMapping.cs
- ObjectStorage.cs
- basecomparevalidator.cs
- XmlEncodedRawTextWriter.cs
- HistoryEventArgs.cs
- ConnectionStringSettings.cs
- RequestResizeEvent.cs
- LambdaCompiler.Unary.cs
- AsymmetricSecurityProtocol.cs
- XmlTextAttribute.cs
- HostDesigntimeLicenseContext.cs
- ObjectDataSourceEventArgs.cs
- CustomErrorsSection.cs
- MsmqInputSessionChannelListener.cs
- SettingsProperty.cs
- SoapMessage.cs
- MemoryStream.cs
- TableItemStyle.cs