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

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

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