System.RuntimeTypeHandle.GetInterfaceMethodImplementationSlot C# (CSharp) Method

GetInterfaceMethodImplementationSlot() private method

private GetInterfaceMethodImplementationSlot ( IntPtr interfaceHandle, IntPtr interfaceMethodHandle ) : int
interfaceHandle IntPtr
interfaceMethodHandle IntPtr
return int
        private extern int GetInterfaceMethodImplementationSlot(IntPtr interfaceHandle, IntPtr interfaceMethodHandle);
        internal int GetInterfaceMethodImplementationSlot(RuntimeTypeHandle interfaceHandle, RuntimeMethodHandle interfaceMethodHandle)

Same methods

RuntimeTypeHandle::GetInterfaceMethodImplementationSlot ( RuntimeTypeHandle interfaceHandle, RuntimeMethodHandle interfaceMethodHandle ) : int

Usage Example

Example #1
0
 internal int GetInterfaceMethodImplementationSlot(RuntimeTypeHandle interfaceHandle, RuntimeMethodHandleInternal interfaceMethodHandle)
 {
     return(RuntimeTypeHandle.GetInterfaceMethodImplementationSlot(this.GetNativeHandle(), interfaceHandle.GetNativeHandle(), interfaceMethodHandle));
 }