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
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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