Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / ProviderConnectionPoint.cs / 1305376 / ProviderConnectionPoint.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Reflection; using System.Web; using System.Web.Util; 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.Web; using System.Web.Util; 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
- DataReaderContainer.cs
- ViewEvent.cs
- MaskedTextBoxTextEditor.cs
- RecognizerStateChangedEventArgs.cs
- MappingMetadataHelper.cs
- OleDbErrorCollection.cs
- ResXResourceSet.cs
- DiscardableAttribute.cs
- Misc.cs
- RadioButtonPopupAdapter.cs
- srgsitem.cs
- Icon.cs
- NotifyParentPropertyAttribute.cs
- XmlSchemaType.cs
- TriggerAction.cs
- RemotingException.cs
- XmlDataLoader.cs
- Tokenizer.cs
- WorkflowElementDialog.cs
- RightsManagementEncryptionTransform.cs
- NameValueCollection.cs
- BoundConstants.cs
- InstanceCompleteException.cs
- validation.cs
- ToolStripContentPanel.cs
- Block.cs
- TransactionManager.cs
- Util.cs
- TextTreeExtractElementUndoUnit.cs
- WebBrowser.cs
- SplitterEvent.cs
- MenuBindingsEditor.cs
- DataGridRowHeaderAutomationPeer.cs
- FontNamesConverter.cs
- Rules.cs
- OptionalMessageQuery.cs
- Ray3DHitTestResult.cs
- ArrayTypeMismatchException.cs
- ReverseInheritProperty.cs
- ContentTextAutomationPeer.cs
- ParameterModifier.cs
- PerfCounterSection.cs
- DefaultValidator.cs
- TemplateControl.cs
- ContainerControlDesigner.cs
- Size.cs
- ActivityCodeDomReferenceService.cs
- WeakReadOnlyCollection.cs
- ContentElementCollection.cs
- ModelFunction.cs
- PlatformCulture.cs
- SignedInfo.cs
- XmlArrayItemAttributes.cs
- UniqueEventHelper.cs
- XPathExpr.cs
- AbstractSvcMapFileLoader.cs
- ManifestResourceInfo.cs
- ObjectDataSourceWizardForm.cs
- SoapWriter.cs
- XmlMembersMapping.cs
- StylusPointProperties.cs
- PtsCache.cs
- UnsafeNativeMethodsTablet.cs
- ProgressBarHighlightConverter.cs
- MenuItemAutomationPeer.cs
- FromReply.cs
- SkipQueryOptionExpression.cs
- ListBindableAttribute.cs
- FigureParagraph.cs
- OrderByBuilder.cs
- UpdateExpressionVisitor.cs
- SecurityPermission.cs
- GridViewColumnHeaderAutomationPeer.cs
- PublisherMembershipCondition.cs
- SamlAudienceRestrictionCondition.cs
- ConfigsHelper.cs
- SystemParameters.cs
- ClockGroup.cs
- SystemIcmpV6Statistics.cs
- GuidelineCollection.cs
- KeyValueConfigurationCollection.cs
- RelatedPropertyManager.cs
- SparseMemoryStream.cs
- CodeNamespaceImportCollection.cs
- EndpointIdentityExtension.cs
- HwndSourceKeyboardInputSite.cs
- HtmlTernaryTree.cs
- EnumType.cs
- GZipStream.cs
- LineMetrics.cs
- GroupDescription.cs
- ActivationWorker.cs
- SimpleHandlerBuildProvider.cs
- HybridDictionary.cs
- DoubleAnimationClockResource.cs
- EUCJPEncoding.cs
- PathFigureCollection.cs
- exports.cs
- WeakReferenceList.cs
- UnitySerializationHolder.cs