Example #1
0
        void UpdateType(String type)
        {
            var factory = Owner.Options.GetFactory <IInputTypeFactory>();

            _type = factory.Create(this, type);
        }
        internal void UpdateType(String value)
        {
            var factory = Context.GetFactory <IInputTypeFactory>();

            _type = factory.Create(this, value);
        }
Example #3
0
 internal void UpdateType(String value) =>
 _type = Context.GetFactory <IInputTypeFactory>().Create(this, value);
Example #4
0
 void UpdateType(String type)
 {
     _type = Factory.InputTypes.Create(this, type);
 }