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
- SelectedPathEditor.cs
- ExpressionPrefixAttribute.cs
- Publisher.cs
- SmiEventSink_Default.cs
- DataServiceEntityAttribute.cs
- EntityDataSourceContextCreatingEventArgs.cs
- CodeMethodInvokeExpression.cs
- SafeHandles.cs
- BigInt.cs
- HwndKeyboardInputProvider.cs
- ConstructorExpr.cs
- DataSourceXmlSerializer.cs
- FigureParagraph.cs
- HtmlInputFile.cs
- ServiceNameElementCollection.cs
- SelectionEditingBehavior.cs
- SqlConnectionHelper.cs
- BaseParagraph.cs
- ObjectDisposedException.cs
- X509ThumbprintKeyIdentifierClause.cs
- HostnameComparisonMode.cs
- StackOverflowException.cs
- AstTree.cs
- LinkedResourceCollection.cs
- StylusTip.cs
- XPathNavigator.cs
- ReadOnlyNameValueCollection.cs
- ImageAttributes.cs
- OpenTypeLayout.cs
- FileRecordSequenceHelper.cs
- XmlSchemaAnyAttribute.cs
- StrongNameMembershipCondition.cs
- Model3DCollection.cs
- AudioException.cs
- DuplexChannel.cs
- ObjectListFieldCollection.cs
- PropertyRecord.cs
- EncoderReplacementFallback.cs
- BaseAsyncResult.cs
- AutomationProperties.cs
- ListBoxItem.cs
- ClientClassGenerator.cs
- ZoomPercentageConverter.cs
- TraceHelpers.cs
- PathGeometry.cs
- InfoCardBinaryReader.cs
- TransportSecurityProtocol.cs
- HtmlFormParameterReader.cs
- HttpListenerException.cs
- CreateCardRequest.cs
- AuthenticationSection.cs
- StringOutput.cs
- EncryptedType.cs
- Rect3D.cs
- ReflectionHelper.cs
- SyncMethodInvoker.cs
- LinkConverter.cs
- HtmlFormWrapper.cs
- TrackingStringDictionary.cs
- COSERVERINFO.cs
- ListViewItem.cs
- PersonalizationState.cs
- SafeRegistryHandle.cs
- OLEDB_Util.cs
- StickyNoteHelper.cs
- QuotaThrottle.cs
- LoginView.cs
- DataBindingCollection.cs
- FormViewModeEventArgs.cs
- FreeIndexList.cs
- DataGridViewColumnHeaderCell.cs
- SystemDiagnosticsSection.cs
- VectorCollectionValueSerializer.cs
- SynchronousSendBindingElement.cs
- ResXDataNode.cs
- X509SecurityToken.cs
- XPathMessageFilterElementCollection.cs
- SourceElementsCollection.cs
- SudsCommon.cs
- ZipPackage.cs
- XhtmlBasicPanelAdapter.cs
- SerializationException.cs
- PageTheme.cs
- IssuanceLicense.cs
- DataContractSerializerFaultFormatter.cs
- RequestBringIntoViewEventArgs.cs
- WebPartConnectionsCancelEventArgs.cs
- TextAdaptor.cs
- NameTable.cs
- ISAPIRuntime.cs
- XmlQueryTypeFactory.cs
- DataTemplate.cs
- WorkerRequest.cs
- TextTreeRootNode.cs
- CheckBoxStandardAdapter.cs
- KnownAssembliesSet.cs
- CompressEmulationStream.cs
- RouteItem.cs
- X509ChainElement.cs
- HtmlAnchor.cs