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
- SystemGatewayIPAddressInformation.cs
- RsaSecurityTokenAuthenticator.cs
- StrokeSerializer.cs
- DXD.cs
- SHA256Managed.cs
- NullReferenceException.cs
- PathFigureCollection.cs
- WebPartsPersonalizationAuthorization.cs
- SiteMap.cs
- SiteMapSection.cs
- StringAttributeCollection.cs
- RecordManager.cs
- PlatformCulture.cs
- HandlerFactoryWrapper.cs
- BrushValueSerializer.cs
- XmlSchemaObject.cs
- DynamicResourceExtensionConverter.cs
- OleDbDataReader.cs
- SplashScreenNativeMethods.cs
- WindowsAltTab.cs
- ContextStaticAttribute.cs
- AsymmetricKeyExchangeFormatter.cs
- hresults.cs
- WebPartEditorOkVerb.cs
- MarginsConverter.cs
- XmlName.cs
- sortedlist.cs
- RowsCopiedEventArgs.cs
- MinimizableAttributeTypeConverter.cs
- DecoderNLS.cs
- TableDetailsRow.cs
- CodeNamespaceImport.cs
- DomNameTable.cs
- DBBindings.cs
- RectIndependentAnimationStorage.cs
- SqlEnums.cs
- ModelVisual3D.cs
- Setter.cs
- PopOutPanel.cs
- AssociationSetEnd.cs
- PropertyEmitterBase.cs
- Nullable.cs
- TypeUsageBuilder.cs
- BlockingCollection.cs
- PropertyMap.cs
- Vars.cs
- ColumnWidthChangingEvent.cs
- JournalEntryStack.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- DeviceContexts.cs
- WebBrowser.cs
- DbCommandDefinition.cs
- SizeChangedEventArgs.cs
- NullNotAllowedCollection.cs
- EventPropertyMap.cs
- MessageFilter.cs
- HierarchicalDataSourceConverter.cs
- TextProperties.cs
- FactoryGenerator.cs
- ListenerElementsCollection.cs
- TransformerInfoCollection.cs
- TypeDescriptor.cs
- PenThreadWorker.cs
- InputScope.cs
- EndPoint.cs
- ContainerParagraph.cs
- XmlEntityReference.cs
- ObfuscationAttribute.cs
- WebConfigurationFileMap.cs
- Visitors.cs
- __ComObject.cs
- BindingCollection.cs
- ErrorLog.cs
- PointConverter.cs
- BlockUIContainer.cs
- IRCollection.cs
- Screen.cs
- Tile.cs
- XmlSchemaObjectTable.cs
- ProfileService.cs
- TransactionWaitAsyncResult.cs
- SqlTriggerContext.cs
- SqlXmlStorage.cs
- TlsnegoTokenProvider.cs
- TogglePatternIdentifiers.cs
- DateTimeOffsetAdapter.cs
- VirtualPathUtility.cs
- TrustManagerMoreInformation.cs
- TextElementCollectionHelper.cs
- IisTraceWebEventProvider.cs
- XmlText.cs
- EndEvent.cs
- MenuEventArgs.cs
- SystemThemeKey.cs
- Pair.cs
- ArgumentException.cs
- DataPagerCommandEventArgs.cs
- ButtonBaseAutomationPeer.cs
- BooleanSwitch.cs
- TextEditorSpelling.cs