Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / AttributeUsageAttribute.cs / 1305376 / AttributeUsageAttribute.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: AttributeUsageAttribute
**
**
** Purpose: The class denotes how to specify the usage of an attribute
**
**
===========================================================*/
namespace System {
using System.Reflection;
/* By default, attributes are inherited and multiple attributes are not allowed */
[Serializable]
[AttributeUsage(AttributeTargets.Class, Inherited = true)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class AttributeUsageAttribute : Attribute
{
internal AttributeTargets m_attributeTarget = AttributeTargets.All; // Defaults to all
internal bool m_allowMultiple = false; // Defaults to false
internal bool m_inherited = true; // Defaults to true
internal static AttributeUsageAttribute Default = new AttributeUsageAttribute(AttributeTargets.All);
//Constructors
public AttributeUsageAttribute(AttributeTargets validOn) {
m_attributeTarget = validOn;
}
internal AttributeUsageAttribute(AttributeTargets validOn, bool allowMultiple, bool inherited) {
m_attributeTarget = validOn;
m_allowMultiple = allowMultiple;
m_inherited = inherited;
}
//Properties
public AttributeTargets ValidOn
{
get{ return m_attributeTarget; }
}
public bool AllowMultiple
{
get { return m_allowMultiple; }
set { m_allowMultiple = value; }
}
public bool Inherited
{
get { return m_inherited; }
set { m_inherited = value; }
}
}
}
// 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
- DataGridCommandEventArgs.cs
- BitmapEncoder.cs
- DurableDispatcherAddressingFault.cs
- DesignOnlyAttribute.cs
- GenericsInstances.cs
- ImportRequest.cs
- PlainXmlWriter.cs
- InteropExecutor.cs
- BamlTreeUpdater.cs
- EventDescriptorCollection.cs
- HttpsChannelFactory.cs
- DesignerEventService.cs
- Timeline.cs
- RC2CryptoServiceProvider.cs
- ScopelessEnumAttribute.cs
- DataGridColumnCollection.cs
- tibetanshape.cs
- BinaryReader.cs
- RoleManagerEventArgs.cs
- LostFocusEventManager.cs
- Type.cs
- DataTableExtensions.cs
- MethodRental.cs
- ExtendedProperty.cs
- ActivationServices.cs
- ActiveXMessageFormatter.cs
- RichTextBoxConstants.cs
- PrePrepareMethodAttribute.cs
- Input.cs
- SmiConnection.cs
- RegexCharClass.cs
- WpfPayload.cs
- VersionedStreamOwner.cs
- HtmlInputButton.cs
- Highlights.cs
- OutOfProcStateClientManager.cs
- WebPartConnectVerb.cs
- TreeNodeBindingCollection.cs
- GroupBox.cs
- LOSFormatter.cs
- ErrorTableItemStyle.cs
- MetadataCacheItem.cs
- VisualBrush.cs
- Pen.cs
- DeploymentSectionCache.cs
- HybridDictionary.cs
- IDataContractSurrogate.cs
- UriWriter.cs
- odbcmetadatafactory.cs
- PaperSize.cs
- SqlWebEventProvider.cs
- COMException.cs
- KoreanCalendar.cs
- ConsoleTraceListener.cs
- RegistrySecurity.cs
- GeneralTransform.cs
- ValueCollectionParameterReader.cs
- BrowserCapabilitiesFactoryBase.cs
- EdmFunction.cs
- Vector.cs
- AspNetCacheProfileAttribute.cs
- SeekStoryboard.cs
- RootBrowserWindowAutomationPeer.cs
- ListChunk.cs
- BmpBitmapEncoder.cs
- SQLDouble.cs
- UnitySerializationHolder.cs
- BufferBuilder.cs
- HtmlTitle.cs
- AutomationProperties.cs
- webproxy.cs
- RegionInfo.cs
- GeneralTransform3D.cs
- CollaborationHelperFunctions.cs
- InkCanvas.cs
- COM2Enum.cs
- RelationshipNavigation.cs
- AttachmentService.cs
- CodeSnippetCompileUnit.cs
- RoleManagerModule.cs
- CharConverter.cs
- MobileControlBuilder.cs
- LinkedList.cs
- BufferedReadStream.cs
- CLRBindingWorker.cs
- MouseGestureValueSerializer.cs
- AnonymousIdentificationModule.cs
- ColorTranslator.cs
- UserControl.cs
- XmlTypeAttribute.cs
- CommandField.cs
- IncrementalReadDecoders.cs
- HttpProfileBase.cs
- ScriptResourceAttribute.cs
- StickyNoteContentControl.cs
- SharedPersonalizationStateInfo.cs
- Query.cs
- ObjectContext.cs
- TextParagraphCache.cs
- DataGridTextBox.cs