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
- CompilerCollection.cs
- RepeaterItemCollection.cs
- AlphaSortedEnumConverter.cs
- IPEndPoint.cs
- HttpProfileBase.cs
- PlatformCulture.cs
- Attachment.cs
- DocumentPageView.cs
- LineBreakRecord.cs
- NameValuePermission.cs
- ParentQuery.cs
- CustomTrackingRecord.cs
- PerformanceCounterPermission.cs
- CodeCommentStatement.cs
- Rect3D.cs
- TargetControlTypeAttribute.cs
- DecimalKeyFrameCollection.cs
- ClientRoleProvider.cs
- SafeNativeMethodsOther.cs
- UriTemplate.cs
- ObjectStorage.cs
- XPathExpr.cs
- ApplicationHost.cs
- RootProfilePropertySettingsCollection.cs
- GenericUI.cs
- TypeUnloadedException.cs
- Rect3D.cs
- ToolboxComponentsCreatedEventArgs.cs
- MemberInfoSerializationHolder.cs
- TaskCanceledException.cs
- ImageButton.cs
- HttpRequestBase.cs
- DispatcherTimer.cs
- RepeatInfo.cs
- QuaternionAnimationBase.cs
- Messages.cs
- COM2PictureConverter.cs
- XPathItem.cs
- InputLanguageCollection.cs
- CodeNamespaceCollection.cs
- PartialCachingControl.cs
- altserialization.cs
- DataRelation.cs
- TableCell.cs
- KeyManager.cs
- FutureFactory.cs
- FixedDSBuilder.cs
- SourceFileBuildProvider.cs
- NavigationHelper.cs
- LexicalChunk.cs
- XamlTypeMapper.cs
- CaseInsensitiveOrdinalStringComparer.cs
- CheckBoxList.cs
- XmlSchema.cs
- MsmqSecureHashAlgorithm.cs
- ChtmlFormAdapter.cs
- PathGeometry.cs
- ETagAttribute.cs
- _FtpControlStream.cs
- smtpconnection.cs
- HttpCacheParams.cs
- CellLabel.cs
- Translator.cs
- PathTooLongException.cs
- SessionPageStatePersister.cs
- SoapExtensionTypeElement.cs
- autovalidator.cs
- _HelperAsyncResults.cs
- MimeWriter.cs
- HttpServerVarsCollection.cs
- BulletDecorator.cs
- XmlNodeChangedEventArgs.cs
- BamlTreeMap.cs
- QilParameter.cs
- DynamicResourceExtension.cs
- AutomationIdentifier.cs
- DataGridCommandEventArgs.cs
- WindowsSecurityTokenAuthenticator.cs
- AdPostCacheSubstitution.cs
- ObjectReferenceStack.cs
- RuleSettingsCollection.cs
- VisualBasicSettingsHandler.cs
- XamlSerializerUtil.cs
- CodeMemberField.cs
- FreeFormDragDropManager.cs
- XPathSingletonIterator.cs
- UnsafeNativeMethods.cs
- Msec.cs
- BindingContext.cs
- DeferredTextReference.cs
- EventManager.cs
- DataViewManager.cs
- ImmutablePropertyDescriptorGridEntry.cs
- DataGridViewCheckBoxColumn.cs
- LoginName.cs
- TileBrush.cs
- BuilderInfo.cs
- FocusChangedEventArgs.cs
- IndexExpression.cs
- Context.cs