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
- SystemWebCachingSectionGroup.cs
- NativeMethods.cs
- Delay.cs
- XMLUtil.cs
- SelectionPattern.cs
- CodeMemberEvent.cs
- DataExpression.cs
- recordstatefactory.cs
- IsolatedStorageFileStream.cs
- DataSourceIDConverter.cs
- HtmlFormParameterWriter.cs
- InvalidProgramException.cs
- OutKeywords.cs
- DBSqlParser.cs
- AssemblySettingAttributes.cs
- EventLog.cs
- HitTestResult.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- DataGridViewIntLinkedList.cs
- SqlDataSourceView.cs
- SourceChangedEventArgs.cs
- ResXResourceSet.cs
- WinInetCache.cs
- PopOutPanel.cs
- ExpandedWrapper.cs
- RequestDescription.cs
- PolyLineSegment.cs
- SplashScreenNativeMethods.cs
- InkCanvas.cs
- CommandLineParser.cs
- List.cs
- contentDescriptor.cs
- ToolBar.cs
- StreamWriter.cs
- PDBReader.cs
- GlyphRun.cs
- ListBoxItemAutomationPeer.cs
- CodeParameterDeclarationExpressionCollection.cs
- StringValidatorAttribute.cs
- ConnectionsZone.cs
- ResourceContainer.cs
- StorageEndPropertyMapping.cs
- TypeConstant.cs
- _CacheStreams.cs
- AsymmetricAlgorithm.cs
- MenuItemCollection.cs
- WindowsGrip.cs
- FtpWebResponse.cs
- ThemeDirectoryCompiler.cs
- FontCacheUtil.cs
- SqlDataSourceConfigureSortForm.cs
- DateTimeStorage.cs
- ServerIdentity.cs
- ToolStripGripRenderEventArgs.cs
- PrefixQName.cs
- SqlCacheDependencySection.cs
- ProfileParameter.cs
- VoiceChangeEventArgs.cs
- StructuredTypeInfo.cs
- PlainXmlWriter.cs
- BackoffTimeoutHelper.cs
- NullReferenceException.cs
- XmlValidatingReader.cs
- DataTableReaderListener.cs
- Point3D.cs
- HtmlSelect.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- TrackBarDesigner.cs
- GeneralTransform2DTo3D.cs
- URLAttribute.cs
- ProtocolsConfigurationEntry.cs
- DeviceContext.cs
- CloudCollection.cs
- InstanceData.cs
- SocketInformation.cs
- ColorMatrix.cs
- AsymmetricAlgorithm.cs
- SapiAttributeParser.cs
- XmlSchemaSimpleTypeRestriction.cs
- StackBuilderSink.cs
- FullTrustAssemblyCollection.cs
- CodeStatement.cs
- RightsDocument.cs
- MessageDroppedTraceRecord.cs
- Operand.cs
- DockingAttribute.cs
- EntryWrittenEventArgs.cs
- ArgIterator.cs
- SystemIPInterfaceStatistics.cs
- RangeBaseAutomationPeer.cs
- TableHeaderCell.cs
- MbpInfo.cs
- DataGridHelper.cs
- InvalidWMPVersionException.cs
- SystemSounds.cs
- ContentValidator.cs
- Table.cs
- Soap.cs
- RadioButtonRenderer.cs
- SafeEventHandle.cs