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
- KeyEventArgs.cs
- BridgeDataRecord.cs
- ElementFactory.cs
- PeerApplicationLaunchInfo.cs
- Trace.cs
- Regex.cs
- CompilerError.cs
- XPathException.cs
- ActivitiesCollection.cs
- FileChangesMonitor.cs
- PathStreamGeometryContext.cs
- PtsPage.cs
- SQLInt32.cs
- _BufferOffsetSize.cs
- ConnectionStringsExpressionBuilder.cs
- AuthenticationManager.cs
- X509CertificateClaimSet.cs
- ReadOnlyPropertyMetadata.cs
- EpmTargetTree.cs
- ItemContainerGenerator.cs
- XPathDocumentNavigator.cs
- DataServiceResponse.cs
- TextTreeTextNode.cs
- HttpResponseMessageProperty.cs
- CryptoStream.cs
- NoClickablePointException.cs
- Compiler.cs
- CharKeyFrameCollection.cs
- FlowDocumentReaderAutomationPeer.cs
- SurrogateEncoder.cs
- StaticExtensionConverter.cs
- ProfileManager.cs
- DataPagerFieldItem.cs
- MasterPage.cs
- TreeViewItemAutomationPeer.cs
- TypeValidationEventArgs.cs
- IPipelineRuntime.cs
- MatrixTransform.cs
- ScriptingWebServicesSectionGroup.cs
- ParameterElementCollection.cs
- FontCollection.cs
- TextBoxView.cs
- ToolboxItemFilterAttribute.cs
- WindowsListViewScroll.cs
- FileDialogCustomPlaces.cs
- StaticFileHandler.cs
- XPathSelfQuery.cs
- ZipIOLocalFileHeader.cs
- DiagnosticsConfigurationHandler.cs
- TypeName.cs
- Util.cs
- DrawingServices.cs
- DesignTimeDataBinding.cs
- ArrayList.cs
- HelloMessageApril2005.cs
- EntityDataSourceDataSelection.cs
- CacheEntry.cs
- ClientConvert.cs
- TimeSpanValidatorAttribute.cs
- FlowDocumentReaderAutomationPeer.cs
- ResXBuildProvider.cs
- GradientSpreadMethodValidation.cs
- TreeViewImageIndexConverter.cs
- PreloadedPackages.cs
- HttpCacheVary.cs
- ButtonFlatAdapter.cs
- ConfigXmlSignificantWhitespace.cs
- UnsafeNativeMethods.cs
- CheckBoxStandardAdapter.cs
- WindowsToolbarItemAsMenuItem.cs
- ScriptingWebServicesSectionGroup.cs
- AppLevelCompilationSectionCache.cs
- SocketAddress.cs
- ErrorWrapper.cs
- _ScatterGatherBuffers.cs
- UTF7Encoding.cs
- KeyEvent.cs
- StringPropertyBuilder.cs
- TransformProviderWrapper.cs
- CodeSnippetStatement.cs
- BinaryObjectInfo.cs
- RightsManagementPermission.cs
- DesignerForm.cs
- InheritanceRules.cs
- InputBinder.cs
- OdbcUtils.cs
- DebugTraceHelper.cs
- AssemblyNameEqualityComparer.cs
- AssemblyHash.cs
- ArgumentException.cs
- WebPartTransformer.cs
- RemoteWebConfigurationHostServer.cs
- SqlParameterCollection.cs
- DataTableMappingCollection.cs
- DataComponentGenerator.cs
- ProcessHost.cs
- XmlSchemaIdentityConstraint.cs
- XamlVector3DCollectionSerializer.cs
- ArraySegment.cs
- SqlBuilder.cs