Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlEncodedRawTextWriter.cs
- SafeBitVector32.cs
- WorkflowTimerService.cs
- Rotation3D.cs
- WebBrowserNavigatingEventHandler.cs
- LinqMaximalSubtreeNominator.cs
- SerialPort.cs
- IImplicitResourceProvider.cs
- DrawingAttributes.cs
- ListView.cs
- SqlUserDefinedAggregateAttribute.cs
- regiisutil.cs
- WebServiceReceive.cs
- SqlLiftWhereClauses.cs
- MSHTMLHost.cs
- JsonObjectDataContract.cs
- ForwardPositionQuery.cs
- CompatibleIComparer.cs
- HtmlHead.cs
- MatrixStack.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- QilChoice.cs
- PenLineCapValidation.cs
- StorageSetMapping.cs
- GenerateTemporaryTargetAssembly.cs
- DelegatingTypeDescriptionProvider.cs
- FrameDimension.cs
- WebPartsPersonalizationAuthorization.cs
- TextElementCollection.cs
- XmlSchemaDocumentation.cs
- BulletDecorator.cs
- RoleService.cs
- CollectionViewProxy.cs
- autovalidator.cs
- StringUtil.cs
- TransactionalPackage.cs
- _ConnectStream.cs
- UrlPropertyAttribute.cs
- OdbcTransaction.cs
- CustomServiceCredentials.cs
- Visual3DCollection.cs
- Select.cs
- EncoderReplacementFallback.cs
- Block.cs
- ResourceExpression.cs
- _BufferOffsetSize.cs
- CodeCatchClause.cs
- SmtpMail.cs
- FontSource.cs
- DataKeyCollection.cs
- RegexGroup.cs
- PasswordTextNavigator.cs
- XmlSchemaAttributeGroup.cs
- AnnotationHighlightLayer.cs
- DataGridViewHeaderCell.cs
- InputBuffer.cs
- CodeVariableReferenceExpression.cs
- StringAnimationUsingKeyFrames.cs
- TextElementCollectionHelper.cs
- Rect3D.cs
- WaitForChangedResult.cs
- ListViewItemMouseHoverEvent.cs
- ListItemParagraph.cs
- UnsafeNativeMethods.cs
- PersonalizableAttribute.cs
- SqlTypeSystemProvider.cs
- TypefaceMap.cs
- HGlobalSafeHandle.cs
- Baml6Assembly.cs
- DataSourceListEditor.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- CacheChildrenQuery.cs
- ServiceBehaviorElement.cs
- DbParameterHelper.cs
- Style.cs
- TypeNameConverter.cs
- ObjectIDGenerator.cs
- WriterOutput.cs
- CodeDomSerializerException.cs
- ProfileEventArgs.cs
- TextSchema.cs
- DependencyPropertyKind.cs
- Activator.cs
- MatrixTransform3D.cs
- DataGridViewCellMouseEventArgs.cs
- PnrpPermission.cs
- DiagnosticTraceSchemas.cs
- AppearanceEditorPart.cs
- TargetPerspective.cs
- CompatibleIComparer.cs
- DataGridViewIntLinkedList.cs
- XsdDuration.cs
- DelayedRegex.cs
- DbConnectionPoolGroup.cs
- MediaElementAutomationPeer.cs
- Span.cs
- DataBoundControlDesigner.cs
- CopyNamespacesAction.cs
- IfAction.cs
- MessagingActivityHelper.cs