Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Evaluator.cs
- PhonemeConverter.cs
- WorkflowInlining.cs
- SerializerWriterEventHandlers.cs
- OrderPreservingPipeliningMergeHelper.cs
- Math.cs
- DataPagerFieldCommandEventArgs.cs
- PropertySegmentSerializer.cs
- GPPOINT.cs
- SqlCrossApplyToCrossJoin.cs
- DetailsView.cs
- ConnectionsZoneDesigner.cs
- Constraint.cs
- NetTcpBinding.cs
- ClientSettingsProvider.cs
- DetailsViewRowCollection.cs
- AutomationPropertyInfo.cs
- SocketException.cs
- TextTreeNode.cs
- SqlServer2KCompatibilityCheck.cs
- TypeReference.cs
- _RequestCacheProtocol.cs
- ButtonColumn.cs
- AuthenticationService.cs
- WebBrowser.cs
- SessionIDManager.cs
- CompositeDataBoundControl.cs
- WebReferencesBuildProvider.cs
- ExtensionDataReader.cs
- IdnMapping.cs
- TokenBasedSet.cs
- ToolStripContainer.cs
- DefaultDialogButtons.cs
- UpDownBase.cs
- RouteParameter.cs
- KeyValueInternalCollection.cs
- InvalidContentTypeException.cs
- CompositeActivityTypeDescriptor.cs
- RangeValidator.cs
- HMACSHA1.cs
- newinstructionaction.cs
- X509WindowsSecurityToken.cs
- NativeMethods.cs
- ExtenderHelpers.cs
- EntityClientCacheEntry.cs
- ImageCodecInfo.cs
- SoapSchemaMember.cs
- EdmTypeAttribute.cs
- ApplicationActivator.cs
- Encoding.cs
- XamlStream.cs
- DataBindingCollection.cs
- ViewGenerator.cs
- CardSpaceSelector.cs
- PeerEndPoint.cs
- InstanceData.cs
- filewebresponse.cs
- SafeBitVector32.cs
- BindStream.cs
- RepeaterItem.cs
- DateTime.cs
- InvalidComObjectException.cs
- LogLogRecordHeader.cs
- DPCustomTypeDescriptor.cs
- PrintPageEvent.cs
- JournalEntry.cs
- StatusStrip.cs
- Helpers.cs
- FontInfo.cs
- BinaryFormatter.cs
- DocumentApplicationDocumentViewer.cs
- ExceptionUtility.cs
- RsaKeyIdentifierClause.cs
- TheQuery.cs
- SingleAnimationUsingKeyFrames.cs
- SizeAnimationBase.cs
- UpdateCommand.cs
- XmlSchemaComplexContent.cs
- TemplatePagerField.cs
- CommonObjectSecurity.cs
- OuterProxyWrapper.cs
- CodeNamespaceImport.cs
- Relationship.cs
- HttpCapabilitiesBase.cs
- ExpressionBuilderContext.cs
- BuildDependencySet.cs
- ControlPaint.cs
- AddInStore.cs
- SinglePageViewer.cs
- SymbolMethod.cs
- IProvider.cs
- OleDbMetaDataFactory.cs
- ParsedAttributeCollection.cs
- Point4DConverter.cs
- EntityDescriptor.cs
- ComponentTray.cs
- WebPartTransformerCollection.cs
- InternalConfigHost.cs
- Subtree.cs
- Int64Converter.cs