| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // 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.
- namespace System.Reflection
- {
- [AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
- public sealed class AssemblyFlagsAttribute : Attribute
- {
- private AssemblyNameFlags _flags;
- [Obsolete("This constructor has been deprecated. Please use AssemblyFlagsAttribute(AssemblyNameFlags) instead. https://go.microsoft.com/fwlink/?linkid=14202")]
- [CLSCompliant(false)]
- public AssemblyFlagsAttribute(uint flags)
- {
- _flags = (AssemblyNameFlags)flags;
- }
- [Obsolete("This property has been deprecated. Please use AssemblyFlags instead. https://go.microsoft.com/fwlink/?linkid=14202")]
- [CLSCompliant(false)]
- public uint Flags
- {
- get { return (uint)_flags; }
- }
- public int AssemblyFlags
- {
- get { return (int)_flags; }
- }
- [Obsolete("This constructor has been deprecated. Please use AssemblyFlagsAttribute(AssemblyNameFlags) instead. https://go.microsoft.com/fwlink/?linkid=14202")]
- public AssemblyFlagsAttribute(int assemblyFlags)
- {
- _flags = (AssemblyNameFlags)assemblyFlags;
- }
- public AssemblyFlagsAttribute(AssemblyNameFlags assemblyFlags)
- {
- _flags = assemblyFlags;
- }
- }
- }
|