C# Class Python.Runtime.ClassObject

Managed class that provides the implementation for reflected types. Managed classes and value types are represented in Python by actual Python type objects. Each of those type objects is associated with an instance of ClassObject, which provides its implementation.
Inheritance: ClassBase
Afficher le fichier Open project: fkarb/pythonnet Class Usage Examples

Méthodes publiques

Méthode Description
type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr

Private Methods

Méthode Description
ClassObject ( Type tp ) : System
GetDocString ( ) : IntPtr
mp_ass_subscript ( IntPtr ob, IntPtr idx, IntPtr v ) : int
mp_subscript ( IntPtr ob, IntPtr idx ) : IntPtr
tp_call ( IntPtr ob, IntPtr args, IntPtr kw ) : IntPtr
tp_new ( IntPtr tp, IntPtr args, IntPtr kw ) : IntPtr

Method Details

type_subscript() public méthode

public type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr
ob System.IntPtr
idx System.IntPtr
Résultat System.IntPtr