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
- DataRecord.cs
- NamedPermissionSet.cs
- ResolveDuplex11AsyncResult.cs
- DefaultParameterValueAttribute.cs
- ModelChangedEventArgsImpl.cs
- TrimSurroundingWhitespaceAttribute.cs
- TimeStampChecker.cs
- SqlStatistics.cs
- ComponentDispatcher.cs
- ProfessionalColorTable.cs
- SkinBuilder.cs
- Normalization.cs
- HealthMonitoringSectionHelper.cs
- UnauthorizedWebPart.cs
- DataFormats.cs
- XmlDataLoader.cs
- ListDictionary.cs
- DynamicVirtualDiscoSearcher.cs
- DataBoundControl.cs
- XdrBuilder.cs
- Int64Converter.cs
- Pair.cs
- X509UI.cs
- X509CertificateValidationMode.cs
- DefaultEventAttribute.cs
- HandleRef.cs
- RangeBaseAutomationPeer.cs
- DbDataReader.cs
- XmlUTF8TextReader.cs
- ParserStack.cs
- InteropBitmapSource.cs
- IsolationInterop.cs
- FixedPageProcessor.cs
- WebPartMovingEventArgs.cs
- DataKey.cs
- RSAOAEPKeyExchangeDeformatter.cs
- CallbackValidatorAttribute.cs
- TextElementCollection.cs
- OracleParameterCollection.cs
- DataTableMapping.cs
- DataGridViewImageColumn.cs
- ListBase.cs
- DataGridSortCommandEventArgs.cs
- SweepDirectionValidation.cs
- ListViewHitTestInfo.cs
- DbConnectionPoolCounters.cs
- RequestContext.cs
- SchemaTypeEmitter.cs
- XmlValidatingReaderImpl.cs
- ComEventsSink.cs
- ParagraphResult.cs
- TraceLog.cs
- DynamicILGenerator.cs
- IgnoreFileBuildProvider.cs
- ScrollPattern.cs
- ObjectStateManagerMetadata.cs
- MenuItemStyleCollection.cs
- FigureParagraph.cs
- PackageRelationshipCollection.cs
- WebPartVerb.cs
- WindowAutomationPeer.cs
- ReflectPropertyDescriptor.cs
- AsyncCompletedEventArgs.cs
- DbBuffer.cs
- WindowProviderWrapper.cs
- AlternationConverter.cs
- NamedPipeProcessProtocolHandler.cs
- SchemaAttDef.cs
- CodeTypeMember.cs
- TemplateBindingExtension.cs
- UIEndRequest.cs
- IndicFontClient.cs
- SQLByte.cs
- SolidColorBrush.cs
- UIAgentCrashedException.cs
- DocComment.cs
- Int64KeyFrameCollection.cs
- CatalogZone.cs
- WebServiceResponseDesigner.cs
- X509Extension.cs
- ColumnWidthChangedEvent.cs
- HttpModulesInstallComponent.cs
- SkinBuilder.cs
- TempFiles.cs
- HttpChannelFactory.cs
- BaseWebProxyFinder.cs
- ToolStripPanelRenderEventArgs.cs
- QuadTree.cs
- ValidationSummary.cs
- Wildcard.cs
- TcpClientChannel.cs
- DependencyPropertyKind.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- TraceSwitch.cs
- DockProviderWrapper.cs
- Focus.cs
- AttributeProviderAttribute.cs
- MiniModule.cs
- remotingproxy.cs
- PropertyRef.cs