Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / ui / TargetControlTypeAttribute.cs / 1 / TargetControlTypeAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Web; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AttributeUsage(AttributeTargets.Class, AllowMultiple = true) ] public sealed class TargetControlTypeAttribute : Attribute { private Type _targetControlType; public TargetControlTypeAttribute(Type targetControlType) { if (targetControlType == null) { throw new ArgumentNullException("targetControlType"); } _targetControlType = targetControlType; } public Type TargetControlType { get { return _targetControlType; } } // For attributes with AllowMultiple set to true, TypeDescriptor.GetAttributes() removes duplicate instances. // These are instances in which TypeId returns equal values. So we must override the TypeId property to // return a unique key. For this attribute, the unique key is just the target control type itself. // (DevDiv Bugs 111475) [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override object TypeId { get { return _targetControlType; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Web; [ AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal), AttributeUsage(AttributeTargets.Class, AllowMultiple = true) ] public sealed class TargetControlTypeAttribute : Attribute { private Type _targetControlType; public TargetControlTypeAttribute(Type targetControlType) { if (targetControlType == null) { throw new ArgumentNullException("targetControlType"); } _targetControlType = targetControlType; } public Type TargetControlType { get { return _targetControlType; } } // For attributes with AllowMultiple set to true, TypeDescriptor.GetAttributes() removes duplicate instances. // These are instances in which TypeId returns equal values. So we must override the TypeId property to // return a unique key. For this attribute, the unique key is just the target control type itself. // (DevDiv Bugs 111475) [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override object TypeId { get { return _targetControlType; } } } } // 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
- BinaryParser.cs
- RotateTransform3D.cs
- FileUtil.cs
- CacheHelper.cs
- Emitter.cs
- Control.cs
- TraceProvider.cs
- FontStyles.cs
- LOSFormatter.cs
- HtmlElementEventArgs.cs
- DataBinder.cs
- DataTrigger.cs
- ExpressionBuilder.cs
- TabItem.cs
- TemplateControlBuildProvider.cs
- MultiBindingExpression.cs
- FormViewUpdateEventArgs.cs
- TableRow.cs
- BeginEvent.cs
- XmlExceptionHelper.cs
- TextClipboardData.cs
- PropertyChangingEventArgs.cs
- GridLengthConverter.cs
- WebBrowserContainer.cs
- Clipboard.cs
- PipelineModuleStepContainer.cs
- COM2ICategorizePropertiesHandler.cs
- AddInToken.cs
- CallbackWrapper.cs
- mediaclock.cs
- LifetimeServices.cs
- ObjectStateFormatter.cs
- LinkedResource.cs
- XpsColorContext.cs
- ExpressionHelper.cs
- AsyncPostBackErrorEventArgs.cs
- DBSchemaTable.cs
- ClientRuntime.cs
- CommandPlan.cs
- TextAction.cs
- ObjectContext.cs
- EdmProviderManifest.cs
- UriWriter.cs
- TypeConverterAttribute.cs
- IPAddressCollection.cs
- CapabilitiesRule.cs
- DeviceContext2.cs
- GregorianCalendarHelper.cs
- ObservableDictionary.cs
- ColumnPropertiesGroup.cs
- EncodingNLS.cs
- RangeValidator.cs
- NameTable.cs
- WebPartRestoreVerb.cs
- TagPrefixCollection.cs
- LongValidatorAttribute.cs
- CacheSection.cs
- EntityDescriptor.cs
- MemberInitExpression.cs
- MessageOperationFormatter.cs
- SoundPlayer.cs
- MdiWindowListStrip.cs
- SafePipeHandle.cs
- DoubleAnimationClockResource.cs
- ItemAutomationPeer.cs
- StreamHelper.cs
- PathData.cs
- ColumnResult.cs
- FormView.cs
- TextBlock.cs
- ToolZone.cs
- LinkLabelLinkClickedEvent.cs
- DocumentGridPage.cs
- DateTimeUtil.cs
- PathSegmentCollection.cs
- BaseProcessProtocolHandler.cs
- XmlIgnoreAttribute.cs
- RegistryPermission.cs
- ClassicBorderDecorator.cs
- SafeArrayRankMismatchException.cs
- TransformerInfoCollection.cs
- unsafeIndexingFilterStream.cs
- DataGridSortCommandEventArgs.cs
- HelpInfo.cs
- activationcontext.cs
- RuleInfoComparer.cs
- HostSecurityManager.cs
- _SslStream.cs
- DuplicateWaitObjectException.cs
- AbstractDataSvcMapFileLoader.cs
- LoginCancelEventArgs.cs
- AttachedAnnotationChangedEventArgs.cs
- SoapObjectInfo.cs
- ProcessHostConfigUtils.cs
- PropertyChangeTracker.cs
- KeyValueInternalCollection.cs
- WsdlWriter.cs
- XmlILTrace.cs
- DBConcurrencyException.cs
- CodeExpressionRuleDeclaration.cs