|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Security.Permissions
{
#if NET
[Obsolete(Obsoletions.CodeAccessSecurityMessage, DiagnosticId = Obsoletions.CodeAccessSecurityDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
#endif
[Flags]
[System.Runtime.CompilerServices.TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
public enum HostProtectionResource
{
All = 511,
ExternalProcessMgmt = 4,
ExternalThreading = 16,
MayLeakOnAbort = 256,
None = 0,
SecurityInfrastructure = 64,
SelfAffectingProcessMgmt = 8,
SelfAffectingThreading = 32,
SharedState = 2,
Synchronization = 1,
UI = 128,
}
}
|