Descriptor for pinvoke information for a method
Inheritance: MetaDataElement
Exemplo n.º 1
0
 internal static void Read(PEReader buff, TableRow[] impls)
 {
     for (int i=0; i < impls.Length; i++)
         impls[i] = new ImplMap(buff);
 }
Exemplo n.º 2
0
 public void RemovePInvokeInfo()
 {
     pinvokeImpl = null;
     methFlags &= NotPInvoke;
 }
Exemplo n.º 3
0
 internal void AddPInvokeInfo(ImplMap impl)
 {
     pinvokeImpl = impl;
     methFlags |= PInvokeImpl;
 }
Exemplo n.º 4
0
 public void AddPInvokeInfo(ModuleRef scope, string methName,
     PInvokeAttr callAttr)
 {
     pinvokeImpl = new ImplMap((ushort)callAttr,this,methName,scope);
     methFlags |= PInvokeImpl;
 }