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
Show file Open project: fkarb/pythonnet Class Usage Examples

Public Methods

Method Description
type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr

Private Methods

Method 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 method

public type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr
ob System.IntPtr
idx System.IntPtr
return System.IntPtr