C# 클래스 Python.Runtime.DelegateObject

Managed class that provides the implementation for reflected delegate types. Delegates are represented in Python by generated type objects. Each of those type objects is associated an instance of this class, which provides its implementation.
상속: ClassBase
파일 보기 프로젝트 열기: pythonnet/pythonnet 1 사용 예제들

공개 메소드들

메소드 설명
tp_call ( IntPtr ob, IntPtr args, IntPtr kw ) : IntPtr
tp_compare ( IntPtr ob, IntPtr other ) : int
tp_new ( IntPtr tp, IntPtr args, IntPtr kw ) : IntPtr
tp_richcompare ( IntPtr ob, IntPtr other, int op ) : IntPtr

비공개 메소드들

메소드 설명
CanSubclass ( ) : bool
DelegateObject ( Type tp ) : System
GetTrueDelegate ( IntPtr op ) : Delegate

메소드 상세

tp_call() 공개 정적인 메소드

public static tp_call ( IntPtr ob, IntPtr args, IntPtr kw ) : IntPtr
ob System.IntPtr
args System.IntPtr
kw System.IntPtr
리턴 System.IntPtr

tp_compare() 공개 정적인 메소드

public static tp_compare ( IntPtr ob, IntPtr other ) : int
ob System.IntPtr
other System.IntPtr
리턴 int

tp_new() 공개 정적인 메소드

public static tp_new ( IntPtr tp, IntPtr args, IntPtr kw ) : IntPtr
tp System.IntPtr
args System.IntPtr
kw System.IntPtr
리턴 System.IntPtr

tp_richcompare() 공개 정적인 메소드

public static tp_richcompare ( IntPtr ob, IntPtr other, int op ) : IntPtr
ob System.IntPtr
other System.IntPtr
op int
리턴 System.IntPtr