6 types derived from OSPlatformAttribute
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Runtime\Versioning\PlatformAttributes.cs (6)
35sealed class TargetPlatformAttribute : OSPlatformAttribute 69sealed class SupportedOSPlatformAttribute : OSPlatformAttribute 100sealed class UnsupportedOSPlatformAttribute : OSPlatformAttribute 135sealed class ObsoletedOSPlatformAttribute : OSPlatformAttribute 185sealed class SupportedOSPlatformGuardAttribute : OSPlatformAttribute 211sealed class UnsupportedOSPlatformGuardAttribute : OSPlatformAttribute
7 references to OSPlatformAttribute
Microsoft.Private.Windows.Polyfills.Tests (6)
System\Runtime\Versioning\PlatformAttributeTests.cs (6)
83typeof(SupportedOSPlatformAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue(); 84typeof(UnsupportedOSPlatformAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue(); 85typeof(TargetPlatformAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue(); 86typeof(ObsoletedOSPlatformAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue(); 87typeof(SupportedOSPlatformGuardAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue(); 88typeof(UnsupportedOSPlatformGuardAttribute).IsSubclassOf(typeof(OSPlatformAttribute)).Should().BeTrue();
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net11.0\System.Runtime.Forwards.cs (1)
729[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.Versioning.OSPlatformAttribute))]