/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ namespace System.Management.Automation.Internal { /// /// This attribute is used for Design For Testability. /// It should be placed on any method containing code /// which is likely to be sensitive to X86/X64/IA64 issues, /// primarily code which calls DllImports or otherwise uses /// NativeMethods. This allows us to generate code coverage /// data specific to architecture sensitive code. /// [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] internal class ArchitectureSensitiveAttribute : Attribute { /// /// Constructor for the ArchitectureSensitiveAttribute class. /// internal ArchitectureSensitiveAttribute() { } } }