IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
CallerIDAccessor.cs
Go to the documentation of this file.
1using System;
2
4{
5
6#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
7
11 internal sealed class CallerIDAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<RuntimeTypeHandle, object>> create;
15
20 public CallerIDAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "ikvm.internal.CallerID")
22 {
23
24 }
25
30 public object InvokeCreate(RuntimeTypeHandle typeHandle) => GetMethod(ref create, "create", Resolve("ikvm.internal.CallerID"), typeof(RuntimeTypeHandle)).Invoker(typeHandle);
31
32 }
33
34#endif
35
36}