Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripRenderEventArgs.cs
- WebControl.cs
- StringUtil.cs
- GZipDecoder.cs
- Misc.cs
- RadioButtonStandardAdapter.cs
- GlyphRunDrawing.cs
- EntityContainerRelationshipSetEnd.cs
- StyleXamlParser.cs
- Single.cs
- TwoPhaseCommit.cs
- WorkflowExecutor.cs
- CodeMemberField.cs
- SortAction.cs
- CapabilitiesState.cs
- _UncName.cs
- GrammarBuilder.cs
- ParagraphVisual.cs
- AsyncSerializedWorker.cs
- InvalidDataContractException.cs
- DataTablePropertyDescriptor.cs
- CqlGenerator.cs
- HMACSHA1.cs
- RangeValuePattern.cs
- Nodes.cs
- IProducerConsumerCollection.cs
- QueryableDataSourceEditData.cs
- DictionaryGlobals.cs
- BamlRecords.cs
- xdrvalidator.cs
- JapaneseLunisolarCalendar.cs
- GuidTagList.cs
- RegexWriter.cs
- FormsAuthenticationUser.cs
- InvalidAsynchronousStateException.cs
- NamespaceCollection.cs
- WebPartTransformer.cs
- SecurityPolicySection.cs
- LinearQuaternionKeyFrame.cs
- SEHException.cs
- DefaultEventAttribute.cs
- PackageProperties.cs
- DependencyPropertyHelper.cs
- ObfuscationAttribute.cs
- TextDpi.cs
- ThemeableAttribute.cs
- SemanticValue.cs
- ViewGenResults.cs
- ContainerFilterService.cs
- NullableConverter.cs
- AppDomainInstanceProvider.cs
- DataGridViewTopRowAccessibleObject.cs
- ColorTransformHelper.cs
- DesignerValidatorAdapter.cs
- Triangle.cs
- ConstraintStruct.cs
- IntellisenseTextBox.designer.cs
- ColumnCollectionEditor.cs
- NetworkInterface.cs
- HttpModulesSection.cs
- CookieParameter.cs
- XmlSchemaAnnotated.cs
- DesignerActionListCollection.cs
- PenCursorManager.cs
- ThicknessAnimation.cs
- StaticDataManager.cs
- EastAsianLunisolarCalendar.cs
- OdbcConnectionOpen.cs
- SiteMapNodeItemEventArgs.cs
- VectorAnimation.cs
- WebPartEditorApplyVerb.cs
- Tuple.cs
- SimpleHandlerFactory.cs
- FlagsAttribute.cs
- EmptyCollection.cs
- WebException.cs
- PropertyGridView.cs
- ExceptionUtil.cs
- SchemaManager.cs
- PeerPresenceInfo.cs
- XsltContext.cs
- SmiContext.cs
- EntityConnection.cs
- indexingfiltermarshaler.cs
- Application.cs
- UIElement3D.cs
- ReflectionTypeLoadException.cs
- SelfIssuedSamlTokenFactory.cs
- BatchWriter.cs
- ComplexLine.cs
- OLEDB_Util.cs
- LogicalTreeHelper.cs
- PrintPreviewGraphics.cs
- ServiceReference.cs
- _HTTPDateParse.cs
- StringFreezingAttribute.cs
- externdll.cs
- ToolBarButton.cs
- WindowsTooltip.cs
- Connector.cs