Cosmos/source2/IL2CPU/Cosmos.IL2CPU/CustomImplementation/System/Security/CodeAccessSecurityEngineImpl.cs
Trivalik_cp 7f17d4d791 handle InlineAttribute in more places -> reduces asm size
used in InitializeArray plug
2012-02-08 19:25:28 +00:00

13 lines
No EOL
528 B
C#

using System;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.IL2CPU.CustomImplementation.CompilerServices {
[Plug(TargetName = "System.Security.CodeAccessSecurityEngine, mscorlib", IsMicrosoftdotNETOnly = true)]
public class CodeAccessSecurityEngine {
//TODO check if ref is linked right
public void Check(object demand, [FieldTypeAttribute(Name = "System.Threading.StackCrawlMark, mscorlib")]ref AttributeTargets stackMark, bool isPermSet) {
// no implementation yet, before threading not needed
}
}
}