Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- EditorBrowsableAttribute.cs
- ServiceChannelManager.cs
- SqlDelegatedTransaction.cs
- StringFreezingAttribute.cs
- Timer.cs
- ImageList.cs
- OutputCacheEntry.cs
- OSFeature.cs
- Int32Rect.cs
- CompiledAction.cs
- NumberEdit.cs
- XmlUnspecifiedAttribute.cs
- WorkflowQueueInfo.cs
- DataGridViewCellParsingEventArgs.cs
- Symbol.cs
- PlainXmlSerializer.cs
- TextPenaltyModule.cs
- AuthenticationModulesSection.cs
- ToolStripGripRenderEventArgs.cs
- SafeRightsManagementSessionHandle.cs
- WorkflowLayouts.cs
- Switch.cs
- ConfigurationManager.cs
- PageStatePersister.cs
- ProgressBarHighlightConverter.cs
- EnumCodeDomSerializer.cs
- HighlightComponent.cs
- QueryInterceptorAttribute.cs
- XmlWrappingReader.cs
- TextEditorThreadLocalStore.cs
- SafeNativeMethods.cs
- FixedBufferAttribute.cs
- BinaryObjectWriter.cs
- FormatPage.cs
- AuthorizationRuleCollection.cs
- SmtpClient.cs
- ToolboxItemFilterAttribute.cs
- PasswordTextNavigator.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- BufferedReadStream.cs
- CqlGenerator.cs
- ProxyManager.cs
- XPathNodeIterator.cs
- BaseDataBoundControl.cs
- BaseTreeIterator.cs
- ListItemConverter.cs
- COM2ExtendedBrowsingHandler.cs
- MenuItemBinding.cs
- ScriptRegistrationManager.cs
- ClientConvert.cs
- AssociationSet.cs
- EntityConnection.cs
- DataPointer.cs
- ToolStripPanelRow.cs
- MobileSysDescriptionAttribute.cs
- SecUtil.cs
- VerificationAttribute.cs
- SqlStatistics.cs
- CompleteWizardStep.cs
- RowParagraph.cs
- ListViewDataItem.cs
- KeyToListMap.cs
- FileDataSourceCache.cs
- TreeViewAutomationPeer.cs
- TextParagraphCache.cs
- LinkConverter.cs
- securitycriticaldataformultiplegetandset.cs
- ListSourceHelper.cs
- XmlSchemaDocumentation.cs
- XPathException.cs
- RankException.cs
- VectorValueSerializer.cs
- SQLChars.cs
- Control.cs
- SqlResolver.cs
- DistributedTransactionPermission.cs
- EdmComplexTypeAttribute.cs
- SqlParameterCollection.cs
- PreDigestedSignedInfo.cs
- ServiceOperationUIEditor.cs
- KeySpline.cs
- Guid.cs
- HotSpot.cs
- DebugView.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- HtmlControl.cs
- ScrollItemProviderWrapper.cs
- DefaultProfileManager.cs
- TypeContext.cs
- TemplatePagerField.cs
- TypeGeneratedEventArgs.cs
- PointUtil.cs
- TimelineCollection.cs
- GridViewHeaderRowPresenter.cs
- Rotation3DAnimation.cs
- PageWrapper.cs
- TdsParser.cs
- SqlUDTStorage.cs
- ProxyWebPartManager.cs
- SortedList.cs