System.RuntimeTypeHandle.GetInterfaceMethodImplementationSlot C# (CSharp) Method

GetInterfaceMethodImplementationSlot() private method

private GetInterfaceMethodImplementationSlot ( RuntimeTypeHandle interfaceHandle, RuntimeMethodHandle interfaceMethodHandle ) : int
interfaceHandle RuntimeTypeHandle
interfaceMethodHandle RuntimeMethodHandle
return int
        internal int GetInterfaceMethodImplementationSlot(RuntimeTypeHandle interfaceHandle, RuntimeMethodHandle interfaceMethodHandle)
        {
            return GetInterfaceMethodImplementationSlot(interfaceHandle.Value, interfaceMethodHandle.Value);
        }

Same methods

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

Usage Example

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