Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsStatusBar.cs
- ExpressionEditorAttribute.cs
- ComEventsHelper.cs
- SiteOfOriginPart.cs
- SerializationException.cs
- UserUseLicenseDictionaryLoader.cs
- XpsViewerException.cs
- Win32PrintDialog.cs
- SoapAttributes.cs
- DataGridViewControlCollection.cs
- ProjectionCamera.cs
- ProtectedUri.cs
- IndexedGlyphRun.cs
- SafeHandle.cs
- Base64Stream.cs
- TdsRecordBufferSetter.cs
- XPathBinder.cs
- XmlValidatingReader.cs
- RestClientProxyHandler.cs
- DesignSurface.cs
- ActivityTypeDesigner.xaml.cs
- IEnumerable.cs
- COM2PropertyPageUITypeConverter.cs
- WindowsSlider.cs
- Invariant.cs
- EmptyCollection.cs
- MappingModelBuildProvider.cs
- AutomationElementIdentifiers.cs
- HtmlInputText.cs
- Rijndael.cs
- MessageBox.cs
- ImageAttributes.cs
- TdsParserStateObject.cs
- GroupBoxAutomationPeer.cs
- Point3D.cs
- PropertyMapper.cs
- ReadOnlyDictionary.cs
- DataServiceOperationContext.cs
- ImageMap.cs
- XPathNode.cs
- XmlAttributeCache.cs
- DataGridViewCellStyleBuilderDialog.cs
- ServerIdentity.cs
- AssemblyName.cs
- ProfileService.cs
- BaseCodePageEncoding.cs
- Light.cs
- AttributeProviderAttribute.cs
- ChildTable.cs
- LayoutEngine.cs
- SplitterCancelEvent.cs
- ReflectionHelper.cs
- AppModelKnownContentFactory.cs
- EntityKeyElement.cs
- CellTreeNode.cs
- ConfigurationSettings.cs
- TileBrush.cs
- QueryContinueDragEvent.cs
- DesignerCatalogPartChrome.cs
- XmlC14NWriter.cs
- XmlDataContract.cs
- PrimitiveDataContract.cs
- FloaterParagraph.cs
- SqlConnectionFactory.cs
- TypeSchema.cs
- Token.cs
- AssemblyInfo.cs
- LinearQuaternionKeyFrame.cs
- DefaultProfileManager.cs
- StructuredTypeEmitter.cs
- QueryOutputWriter.cs
- UnmanagedMarshal.cs
- ProcessInfo.cs
- ScrollProviderWrapper.cs
- ComNativeDescriptor.cs
- DataGridViewCellEventArgs.cs
- GeometryCollection.cs
- DataGridView.cs
- cookiecollection.cs
- CodeSubDirectoriesCollection.cs
- StdValidatorsAndConverters.cs
- ObservableDictionary.cs
- PersonalizablePropertyEntry.cs
- MonikerProxyAttribute.cs
- ViewEvent.cs
- CultureTable.cs
- DefaultTypeArgumentAttribute.cs
- ScaleTransform.cs
- BasicCellRelation.cs
- AnnouncementInnerClient11.cs
- DomNameTable.cs
- TreeNodeStyle.cs
- TransformPatternIdentifiers.cs
- InvokeWebServiceDesigner.cs
- ConfigXmlElement.cs
- SynchronizedDispatch.cs
- TextBox.cs
- ExpandSegment.cs
- DataGridViewElement.cs
- SSmlParser.cs