| File: Symbols\EmbeddableAttributes.cs | Web Access |
| Project: src\roslyn\src\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj (Microsoft.CodeAnalysis.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Microsoft.CodeAnalysis.CSharp { [Flags] internal enum EmbeddableAttributes { IsReadOnlyAttribute = 0x01, IsByRefLikeAttribute = 0x02, IsUnmanagedAttribute = 0x04, NullableAttribute = 0x08, NullableContextAttribute = 0x10, NullablePublicOnlyAttribute = 0x20, NativeIntegerAttribute = 0x40, ScopedRefAttribute = 0x80, RefSafetyRulesAttribute = 0x100, RequiresLocationAttribute = 0x200, ParamCollectionAttribute = 0x400, ExtensionMarkerAttribute = 0x800, MemorySafetyRulesAttribute = 0x1000, RequiresUnsafeAttribute = 0x2000, } }