Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / ProviderConnectionPoint.cs / 1 / ProviderConnectionPoint.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Reflection; using System.Security.Permissions; using System.Web; using System.Web.Util; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ProviderConnectionPoint : ConnectionPoint { // Used by WebPartManager to verify the custom ConnectionPoint type has // the correct constructor signature. internal static readonly Type[] ConstructorTypes; static ProviderConnectionPoint() { ConstructorInfo constructor = typeof(ProviderConnectionPoint).GetConstructors()[0]; ConstructorTypes = WebPartUtil.GetTypesForConstructor(constructor); } public ProviderConnectionPoint(MethodInfo callbackMethod, Type interfaceType, Type controlType, string displayName, string id, bool allowsMultipleConnections) : base( callbackMethod, interfaceType, controlType, displayName, id, allowsMultipleConnections) { } ////// The secondary interfaces for this connection point. An exception will be thrown /// if primary interfaces are returned in this collection. /// public virtual ConnectionInterfaceCollection GetSecondaryInterfaces(Control control) { return ConnectionInterfaceCollection.Empty; } public virtual object GetObject(Control control) { if (control == null) { throw new ArgumentNullException("control"); } return CallbackMethod.Invoke(control, null); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Reflection; using System.Security.Permissions; using System.Web; using System.Web.Util; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ProviderConnectionPoint : ConnectionPoint { // Used by WebPartManager to verify the custom ConnectionPoint type has // the correct constructor signature. internal static readonly Type[] ConstructorTypes; static ProviderConnectionPoint() { ConstructorInfo constructor = typeof(ProviderConnectionPoint).GetConstructors()[0]; ConstructorTypes = WebPartUtil.GetTypesForConstructor(constructor); } public ProviderConnectionPoint(MethodInfo callbackMethod, Type interfaceType, Type controlType, string displayName, string id, bool allowsMultipleConnections) : base( callbackMethod, interfaceType, controlType, displayName, id, allowsMultipleConnections) { } ////// The secondary interfaces for this connection point. An exception will be thrown /// if primary interfaces are returned in this collection. /// public virtual ConnectionInterfaceCollection GetSecondaryInterfaces(Control control) { return ConnectionInterfaceCollection.Empty; } public virtual object GetObject(Control control) { if (control == null) { throw new ArgumentNullException("control"); } return CallbackMethod.Invoke(control, null); } } } // 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
- CubicEase.cs
- ProgressBarAutomationPeer.cs
- iisPickupDirectory.cs
- ApplicationInfo.cs
- CipherData.cs
- VirtualizedItemProviderWrapper.cs
- MemberAssignment.cs
- FigureParaClient.cs
- WorkflowMessageEventArgs.cs
- SHA512.cs
- AutomationElementCollection.cs
- FloatUtil.cs
- _WebProxyDataBuilder.cs
- ControlBuilder.cs
- SafeArchiveContext.cs
- QilName.cs
- SqlStream.cs
- RequiredFieldValidator.cs
- IPPacketInformation.cs
- CommonBehaviorsSection.cs
- SecurityDescriptor.cs
- NativeMethodsOther.cs
- tabpagecollectioneditor.cs
- RequestQueryParser.cs
- CompoundFileDeflateTransform.cs
- EncryptedKey.cs
- DataListItem.cs
- ToolboxBitmapAttribute.cs
- DataControlPagerLinkButton.cs
- TransformedBitmap.cs
- XPathDocumentNavigator.cs
- AsymmetricSignatureDeformatter.cs
- Inline.cs
- GeometryGroup.cs
- InternalPolicyElement.cs
- TileBrush.cs
- SimpleFieldTemplateFactory.cs
- TextServicesContext.cs
- MenuItemCollectionEditorDialog.cs
- PieceDirectory.cs
- DataGridViewAutoSizeModeEventArgs.cs
- HttpContextServiceHost.cs
- SmiContext.cs
- DocComment.cs
- DragEvent.cs
- Operators.cs
- StrokeNode.cs
- Int32Rect.cs
- ControlEvent.cs
- FtpWebRequest.cs
- Helper.cs
- ArcSegment.cs
- CodeDesigner.cs
- XmlComplianceUtil.cs
- ScrollContentPresenter.cs
- HttpServerVarsCollection.cs
- DebuggerAttributes.cs
- MethodRental.cs
- RectKeyFrameCollection.cs
- DataGrid.cs
- ListBoxAutomationPeer.cs
- NameTable.cs
- Symbol.cs
- StateMachine.cs
- QualifiedCellIdBoolean.cs
- EntityTemplateFactory.cs
- SelectedDatesCollection.cs
- SettingsAttributes.cs
- GatewayDefinition.cs
- ResponseStream.cs
- safemediahandle.cs
- ParameterModifier.cs
- ClientScriptManager.cs
- RectValueSerializer.cs
- OracleTransaction.cs
- ThemeDictionaryExtension.cs
- VisualStyleRenderer.cs
- IRCollection.cs
- SizeChangedEventArgs.cs
- UnmanagedMarshal.cs
- CAGDesigner.cs
- WebPartHelpVerb.cs
- PreloadHost.cs
- BulletedListEventArgs.cs
- PtsHost.cs
- OleDbPermission.cs
- XmlAttributeProperties.cs
- AssociationTypeEmitter.cs
- TaiwanLunisolarCalendar.cs
- StreamReader.cs
- ToolStripMenuItem.cs
- ParseChildrenAsPropertiesAttribute.cs
- Brushes.cs
- SystemIPInterfaceProperties.cs
- ClientApiGenerator.cs
- Html32TextWriter.cs
- _SafeNetHandles.cs
- EventLogRecord.cs
- CellTreeNodeVisitors.cs
- OleDbRowUpdatedEvent.cs