MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
Python.Runtime.ClrMemberInfo Class Referenceabstract

The ClrMemberInfo represents clr information. More...

Inheritance diagram for Python.Runtime.ClrMemberInfo:
Python.Runtime.ClrFieldInfo Python.Runtime.ClrPropertyInfo

Public Member Functions

abstract void SetPyObjAttr (PyObject pyObj, object clrObj)
 Set the Python object attribute. More...
 
abstract void SetClrObjAttr (object clrObj, PyObject pyObj)
 Set the clr object attribute. More...
 

Public Attributes

string PyPropertyName
 Returns the Python property name. More...
 
IntPtr? PythonType
 Returns the Python type. More...
 
string ClrPropertyName
 Returns the clr property name. More...
 
Type ClrType
 Returns the clr type. More...
 
PyConverter Converter
 Returns the converter used. More...
 

Detailed Description

The ClrMemberInfo represents clr information.

Open-source public code originally shared from:

See also
PyConverter by Wenguang Yang, 2018

Definition at line 595 of file PyConverter.cs.

Member Function Documentation

◆ SetClrObjAttr()

abstract void Python.Runtime.ClrMemberInfo.SetClrObjAttr ( object  clrObj,
PyObject  pyObj 
)
pure virtual

Set the clr object attribute.

Parameters
clrObjSpecifies the clr object.
pyObjSpecifies the PyObject.

Implemented in Python.Runtime.ClrPropertyInfo, and Python.Runtime.ClrFieldInfo.

◆ SetPyObjAttr()

abstract void Python.Runtime.ClrMemberInfo.SetPyObjAttr ( PyObject  pyObj,
object  clrObj 
)
pure virtual

Set the Python object attribute.

Parameters
pyObjSpecifies the PyObject.
clrObjSpecifies the clr object.

Implemented in Python.Runtime.ClrPropertyInfo, and Python.Runtime.ClrFieldInfo.

Member Data Documentation

◆ ClrPropertyName

string Python.Runtime.ClrMemberInfo.ClrPropertyName

Returns the clr property name.

Definition at line 610 of file PyConverter.cs.

◆ ClrType

Type Python.Runtime.ClrMemberInfo.ClrType

Returns the clr type.

Definition at line 615 of file PyConverter.cs.

◆ Converter

PyConverter Python.Runtime.ClrMemberInfo.Converter

Returns the converter used.

Definition at line 620 of file PyConverter.cs.

◆ PyPropertyName

string Python.Runtime.ClrMemberInfo.PyPropertyName

Returns the Python property name.

Definition at line 600 of file PyConverter.cs.

◆ PythonType

IntPtr? Python.Runtime.ClrMemberInfo.PythonType

Returns the Python type.

Definition at line 605 of file PyConverter.cs.


The documentation for this class was generated from the following file: