[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/filmor/pythonnet/drop-python2/src/runtime/interfaces.cs [Back]  [Original]

using System;

namespace Python.Runtime
{
    /// 
    /// xxx
    /// 
    internal interface IReflectedType
    {
        string PythonTypeName();
        Type GetReflectedType();
    }

    internal interface IReflectedClass : IReflectedType
    {
        bool IsException();
    }

    internal interface IReflectedInterface : IReflectedType
    {
    }

    internal interface IReflectedArray : IReflectedType
    {
    }

    internal interface IReflectedGenericClass : IReflectedClass
    {
    }
}

Web Proxy Viewer  |  New URL  |  Original Page