Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / ConnectionConsumerAttribute.cs / 1 / ConnectionConsumerAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Reflection; using System.Security.Permissions; [AttributeUsage(AttributeTargets.Method)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ConnectionConsumerAttribute : Attribute { private string _displayName; private string _id; private Type _connectionPointType; private bool _allowsMultipleConnections; public ConnectionConsumerAttribute(string displayName) { if (String.IsNullOrEmpty(displayName)) { throw new ArgumentNullException("displayName"); } _displayName = displayName; _allowsMultipleConnections = false; } public ConnectionConsumerAttribute(string displayName, string id) : this(displayName) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } _id = id; } public ConnectionConsumerAttribute(string displayName, Type connectionPointType) : this(displayName) { if (connectionPointType == null) { throw new ArgumentNullException("connectionPointType"); } _connectionPointType = connectionPointType; } public ConnectionConsumerAttribute(string displayName, string id, Type connectionPointType) : this(displayName, connectionPointType) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } _id = id; } public bool AllowsMultipleConnections { get { return _allowsMultipleConnections; } set { _allowsMultipleConnections = value; } } public string ID { get { return (_id != null) ? _id : String.Empty; } } public virtual string DisplayName { get { return DisplayNameValue; } } protected string DisplayNameValue { get { return _displayName; } set { _displayName = value; } } public Type ConnectionPointType { get { if (WebPartUtil.IsConnectionPointTypeValid(_connectionPointType, /*isConsumer*/ true)) { return _connectionPointType; } else { throw new InvalidOperationException(SR.GetString( SR.ConnectionConsumerAttribute_InvalidConnectionPointType, _connectionPointType.Name)); } } } } } // 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.ComponentModel; using System.Reflection; using System.Security.Permissions; [AttributeUsage(AttributeTargets.Method)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ConnectionConsumerAttribute : Attribute { private string _displayName; private string _id; private Type _connectionPointType; private bool _allowsMultipleConnections; public ConnectionConsumerAttribute(string displayName) { if (String.IsNullOrEmpty(displayName)) { throw new ArgumentNullException("displayName"); } _displayName = displayName; _allowsMultipleConnections = false; } public ConnectionConsumerAttribute(string displayName, string id) : this(displayName) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } _id = id; } public ConnectionConsumerAttribute(string displayName, Type connectionPointType) : this(displayName) { if (connectionPointType == null) { throw new ArgumentNullException("connectionPointType"); } _connectionPointType = connectionPointType; } public ConnectionConsumerAttribute(string displayName, string id, Type connectionPointType) : this(displayName, connectionPointType) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } _id = id; } public bool AllowsMultipleConnections { get { return _allowsMultipleConnections; } set { _allowsMultipleConnections = value; } } public string ID { get { return (_id != null) ? _id : String.Empty; } } public virtual string DisplayName { get { return DisplayNameValue; } } protected string DisplayNameValue { get { return _displayName; } set { _displayName = value; } } public Type ConnectionPointType { get { if (WebPartUtil.IsConnectionPointTypeValid(_connectionPointType, /*isConsumer*/ true)) { return _connectionPointType; } else { throw new InvalidOperationException(SR.GetString( SR.ConnectionConsumerAttribute_InvalidConnectionPointType, _connectionPointType.Name)); } } } } } // 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
- CaseInsensitiveComparer.cs
- XmlNavigatorStack.cs
- FilterQuery.cs
- SystemBrushes.cs
- hresults.cs
- NetworkInformationPermission.cs
- Config.cs
- BamlResourceContent.cs
- ActivityTypeCodeDomSerializer.cs
- TextTreeRootTextBlock.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- XmlSignificantWhitespace.cs
- EncoderExceptionFallback.cs
- ToolboxComponentsCreatingEventArgs.cs
- DescendantOverDescendantQuery.cs
- Vector3DAnimationUsingKeyFrames.cs
- DoubleIndependentAnimationStorage.cs
- SelectionWordBreaker.cs
- GridViewSortEventArgs.cs
- EntityDataSourceValidationException.cs
- GrammarBuilderRuleRef.cs
- COM2TypeInfoProcessor.cs
- ToolStripRenderEventArgs.cs
- StringUtil.cs
- SecurityContext.cs
- PerformanceCounterPermissionEntryCollection.cs
- Int64Converter.cs
- SortKey.cs
- WS2007HttpBindingCollectionElement.cs
- StateRuntime.cs
- PeerNameRecord.cs
- BitHelper.cs
- AbandonedMutexException.cs
- PageTheme.cs
- TextPointer.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- ParallelTimeline.cs
- UserNameServiceElement.cs
- HttpApplication.cs
- NativeMethods.cs
- WindowsGraphics.cs
- ApplicationTrust.cs
- EdmEntityTypeAttribute.cs
- FloatUtil.cs
- NamespaceInfo.cs
- milexports.cs
- MimeMultiPart.cs
- InstalledFontCollection.cs
- AnonymousIdentificationModule.cs
- RichTextBoxConstants.cs
- HttpModuleAction.cs
- TypeRestriction.cs
- DockPattern.cs
- PriorityItem.cs
- ObjectParameterCollection.cs
- Transform3D.cs
- Rotation3D.cs
- DataGridAddNewRow.cs
- FrugalList.cs
- SchemaImporter.cs
- Types.cs
- CustomPopupPlacement.cs
- User.cs
- XmlTextReaderImplHelpers.cs
- RadialGradientBrush.cs
- DesignerDeviceConfig.cs
- HashCryptoHandle.cs
- ProcessHostMapPath.cs
- SystemColors.cs
- FormViewInsertEventArgs.cs
- PartialCachingControl.cs
- EntityModelBuildProvider.cs
- ZipFileInfo.cs
- Events.cs
- StateDesigner.Helpers.cs
- ModuleBuilder.cs
- ActivityInstanceReference.cs
- PassportAuthenticationModule.cs
- MergeFailedEvent.cs
- Win32Native.cs
- BasicViewGenerator.cs
- PropertyNames.cs
- ServerReliableChannelBinder.cs
- ToolboxCategory.cs
- SecurityTokenTypes.cs
- DataGridDetailsPresenterAutomationPeer.cs
- MemberMaps.cs
- ConnectionProviderAttribute.cs
- TemplateBaseAction.cs
- RawStylusInputReport.cs
- Geometry.cs
- ExternalCalls.cs
- TypeTypeConverter.cs
- TypeSource.cs
- CultureMapper.cs
- DataGridViewCellParsingEventArgs.cs
- WizardPanelChangingEventArgs.cs
- BamlLocalizableResourceKey.cs
- LicenseException.cs
- CompletedAsyncResult.cs