Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / ConnectionPoint.cs / 1 / ConnectionPoint.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; ////// A ConnectionPoint defines a possible connection. A WebPart uses this /// to define the connections it can provide or consume. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class ConnectionPoint { private MethodInfo _callbackMethod; private Type _controlType; private Type _interfaceType; private string _displayName; private string _id; private bool _allowsMultipleConnections; // We do not want the public field to be "const", since that means we can never change its value. // We want the internal const field so we can use it in attributes. public static readonly string DefaultID = DefaultIDInternal; internal const string DefaultIDInternal = "default"; // internal ConnectionPoint(MethodInfo callbackMethod, Type interfaceType, Type controlType, string displayName, string id, bool allowsMultipleConnections) { if (callbackMethod == null) { throw new ArgumentNullException("callbackMethod"); } if (interfaceType == null) { throw new ArgumentNullException("interfaceType"); } if (controlType == null) { throw new ArgumentNullException("controlType"); } if (!controlType.IsSubclassOf(typeof(Control))) { throw new ArgumentException(SR.GetString(SR.ConnectionPoint_InvalidControlType), "controlType"); } if (String.IsNullOrEmpty(displayName)) { throw new ArgumentNullException("displayName"); } _callbackMethod = callbackMethod; _interfaceType = interfaceType; _controlType = controlType; _displayName = displayName; _id = id; _allowsMultipleConnections = allowsMultipleConnections; } public bool AllowsMultipleConnections { get { return _allowsMultipleConnections; } } internal MethodInfo CallbackMethod { get { return _callbackMethod; } } public Type ControlType { get { return _controlType; } } public Type InterfaceType { get { return _interfaceType; } } public string ID { get { return (!String.IsNullOrEmpty(_id)) ? _id : DefaultID; } } public string DisplayName { get { return _displayName; } } ////// Base implementation returns true, can be overridden by subclasses to return /// true or false conditionally based on the state of the Control. /// public virtual bool GetEnabled(Control control) { return true; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DateTimeAutomationPeer.cs
- TrackBar.cs
- AdjustableArrowCap.cs
- MimeXmlReflector.cs
- AttributeCollection.cs
- MemberInfoSerializationHolder.cs
- CodeDomLocalizationProvider.cs
- MimeMapping.cs
- LocalizableResourceBuilder.cs
- ExtractorMetadata.cs
- Knowncolors.cs
- NullRuntimeConfig.cs
- XmlStreamNodeWriter.cs
- Funcletizer.cs
- AttributeEmitter.cs
- NullableBoolConverter.cs
- SHA384.cs
- FormViewUpdatedEventArgs.cs
- TextRangeEditLists.cs
- CultureSpecificCharacterBufferRange.cs
- ControllableStoryboardAction.cs
- CommandEventArgs.cs
- Int16.cs
- RegisteredScript.cs
- TypeSystem.cs
- ColorKeyFrameCollection.cs
- QilInvoke.cs
- PropertyManager.cs
- TreeNodeClickEventArgs.cs
- SqlMethodTransformer.cs
- xmlglyphRunInfo.cs
- CryptoApi.cs
- IncrementalHitTester.cs
- TypeConverterValueSerializer.cs
- StringCollectionMarkupSerializer.cs
- ThreadStartException.cs
- RootAction.cs
- ExpressionHelper.cs
- WebPartTransformerCollection.cs
- XmlReflectionMember.cs
- IDataContractSurrogate.cs
- DataColumnChangeEvent.cs
- BinaryUtilClasses.cs
- InstanceNotReadyException.cs
- ColumnMapVisitor.cs
- InputLanguageManager.cs
- MimeMultiPart.cs
- Permission.cs
- HtmlWindow.cs
- KerberosRequestorSecurityToken.cs
- RemoteWebConfigurationHost.cs
- TransportSecurityProtocol.cs
- MsmqIntegrationMessageProperty.cs
- VirtualizingStackPanel.cs
- WebPartConnectionsCancelEventArgs.cs
- InfoCardServiceInstallComponent.cs
- SchemaName.cs
- WmpBitmapEncoder.cs
- Compilation.cs
- _NTAuthentication.cs
- LinqDataSourceSelectEventArgs.cs
- ResourceDescriptionAttribute.cs
- DataGridViewColumn.cs
- CqlLexerHelpers.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- GlyphTypeface.cs
- ConfigXmlCDataSection.cs
- Binding.cs
- Win32Native.cs
- ConfigurationProviderException.cs
- IndexedEnumerable.cs
- CodeObjectCreateExpression.cs
- SystemTcpStatistics.cs
- KnownBoxes.cs
- InputEventArgs.cs
- ExpressionBindingCollection.cs
- MemberDomainMap.cs
- StreamWithDictionary.cs
- ClassDataContract.cs
- InputScope.cs
- TripleDES.cs
- CapabilitiesRule.cs
- FixedDocumentPaginator.cs
- TableLayout.cs
- DocumentViewerBase.cs
- GridViewSortEventArgs.cs
- ServiceBusyException.cs
- ExecutedRoutedEventArgs.cs
- ObjectDataSourceStatusEventArgs.cs
- NamedPipeTransportSecurityElement.cs
- HtmlInputText.cs
- BypassElement.cs
- VisualCollection.cs
- NeutralResourcesLanguageAttribute.cs
- oledbconnectionstring.cs
- BitmapEffectGeneralTransform.cs
- RawStylusInputReport.cs
- DrawItemEvent.cs
- EventLogLink.cs
- SspiHelper.cs