System.Reflection.MonoMethodInfo.GetMethodImplementationFlags C# (CSharp) Method

GetMethodImplementationFlags() static private method

static private GetMethodImplementationFlags ( IntPtr handle ) : MethodImplAttributes
handle IntPtr
return MethodImplAttributes
		internal static MethodImplAttributes GetMethodImplementationFlags (IntPtr handle)
		{
			return GetMethodInfo (handle).iattrs;
		}

Usage Example

Esempio n. 1
0
 public override MethodImplAttributes GetMethodImplementationFlags()
 {
     return(MonoMethodInfo.GetMethodImplementationFlags(mhandle));
 }