Python.Runtime.ConstructorBinding.ConstructorBinding C# (CSharp) Метод

ConstructorBinding() публичный Метод

public ConstructorBinding ( Type type, IntPtr pyTypeHndl, ConstructorBinder ctorBinder ) : System
type System.Type
pyTypeHndl System.IntPtr
ctorBinder ConstructorBinder
Результат System
        public ConstructorBinding(Type type, IntPtr pyTypeHndl, ConstructorBinder ctorBinder)
            : base()
        {
            this.type = type;
            Runtime.XIncref(pyTypeHndl);
            this.pyTypeHndl = pyTypeHndl;
            this.ctorBinder = ctorBinder;
            repr = IntPtr.Zero;
        }