Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / ConnectionProviderAttribute.cs / 1 / ConnectionProviderAttribute.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 ConnectionProviderAttribute : Attribute { private string _displayName; private string _id; private Type _connectionPointType; private bool _allowsMultipleConnections; public ConnectionProviderAttribute(string displayName) { if (String.IsNullOrEmpty(displayName)) { throw new ArgumentNullException("displayName"); } _displayName = displayName; _allowsMultipleConnections = true; } public ConnectionProviderAttribute(string displayName, string id) : this(displayName) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } _id = id; } public ConnectionProviderAttribute(string displayName, Type connectionPointType) : this(displayName) { if (connectionPointType == null) { throw new ArgumentNullException("connectionPointType"); } _connectionPointType = connectionPointType; } public ConnectionProviderAttribute(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*/ false)) { return _connectionPointType; } else { throw new InvalidOperationException(SR.GetString( SR.ConnectionProviderAttribute_InvalidConnectionPointType, _connectionPointType.Name)); } } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SystemResources.cs
- LongAverageAggregationOperator.cs
- ForeignKeyConstraint.cs
- streamingZipPartStream.cs
- Double.cs
- SmuggledIUnknown.cs
- Publisher.cs
- ColumnHeader.cs
- HttpProcessUtility.cs
- COM2ExtendedTypeConverter.cs
- WmpBitmapDecoder.cs
- DataServiceKeyAttribute.cs
- HandlerFactoryCache.cs
- List.cs
- WebBaseEventKeyComparer.cs
- ToggleProviderWrapper.cs
- Atom10FormatterFactory.cs
- QilTernary.cs
- SQLBinaryStorage.cs
- ClientRolePrincipal.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- Transform3DCollection.cs
- ByteAnimationBase.cs
- PartEditor.cs
- TextModifierScope.cs
- WebCategoryAttribute.cs
- DataTableMapping.cs
- TypeConverterMarkupExtension.cs
- FieldNameLookup.cs
- HMACSHA1.cs
- DeflateStream.cs
- PagedDataSource.cs
- RenderCapability.cs
- TreeNodeCollection.cs
- SerializationInfoEnumerator.cs
- SelectedGridItemChangedEvent.cs
- ExtenderProviderService.cs
- UnsafeNativeMethods.cs
- WeakReferenceKey.cs
- MemoryFailPoint.cs
- COM2ComponentEditor.cs
- XmlDictionaryReaderQuotas.cs
- XmlUtil.cs
- ConditionBrowserDialog.cs
- SynchronousChannelMergeEnumerator.cs
- SerializationException.cs
- FaultContractAttribute.cs
- DisplayMemberTemplateSelector.cs
- EdmError.cs
- ArrowControl.xaml.cs
- ImageFormat.cs
- HttpClientCertificate.cs
- OrthographicCamera.cs
- EventHandlerList.cs
- EmissiveMaterial.cs
- CustomBindingCollectionElement.cs
- cookie.cs
- DbParameterHelper.cs
- XmlUrlResolver.cs
- DependencySource.cs
- XmlNotation.cs
- WindowHideOrCloseTracker.cs
- TypeUsageBuilder.cs
- GreenMethods.cs
- LogicalTreeHelper.cs
- ListenerHandler.cs
- FixedSOMTextRun.cs
- AppDomainInstanceProvider.cs
- StrongNameMembershipCondition.cs
- CheckPair.cs
- TextParaClient.cs
- TypeElementCollection.cs
- IPPacketInformation.cs
- SoapInteropTypes.cs
- SqlRowUpdatingEvent.cs
- DivideByZeroException.cs
- DbConnectionPoolOptions.cs
- SmtpReplyReader.cs
- LabelDesigner.cs
- QueryCursorEventArgs.cs
- XPathNavigator.cs
- HGlobalSafeHandle.cs
- BindingUtils.cs
- CreateRefExpr.cs
- ExpressionEditorAttribute.cs
- CompatibleIComparer.cs
- DocumentPageTextView.cs
- DataSourceBooleanViewSchemaConverter.cs
- ConstructorNeedsTagAttribute.cs
- ValueUnavailableException.cs
- HyperLink.cs
- AssemblyBuilder.cs
- CodeEntryPointMethod.cs
- DataBindingCollection.cs
- TdsParserSessionPool.cs
- EntityDataSourceColumn.cs
- BindingsCollection.cs
- EntityDataSourceViewSchema.cs
- DataGridCellsPanel.cs
- OverflowException.cs