PERWAPI.ConstantBinding.ConstantBinding C# (CSharp) Method

ConstantBinding() private method

Create a new constant binding.
private ConstantBinding ( string name, object value, Type type, uint token ) : System
name string The name of the constant.
value object The value of the constant.
type Type The data type of the constant.
token uint
return System
        internal ConstantBinding(string name, object value, Type type, uint token)
        {
            _value = value;
            _name = name;
            _type = type;
            _token = token;
        }