Ejemplo n.º 1
0
            public override void SetValue(object component, object value)
            {
                var obj      = ((BusDeviceProxy)component).Device;
                var propInfo = ComponentType.GetProperty(Name);

                propInfo.SetValue(obj, Convert.ChangeType(value, propInfo.PropertyType), null);
            }
Ejemplo n.º 2
0
            public override object GetValue(object component)
            {
                var obj = ((BusDeviceProxy)component).Device;

                return(ComponentType
                       .GetProperty(Name)
                       .GetValue(obj, null));
            }
Ejemplo n.º 3
0
 public override void SetValue(object component, object value)
 {
     ComponentType.GetProperty(_Name).SetValue(Component, value, null);
 }