CommandParameter.cs 725 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace OpenSEMI.ClientBase.Command
  3. {
  4. public class CommandParameter<TCustomParameter>
  5. {
  6. public TCustomParameter CustomParameter
  7. {
  8. get;
  9. private set;
  10. }
  11. protected CommandParameter(TCustomParameter customParameter)
  12. {
  13. CustomParameter = customParameter;
  14. }
  15. public static CommandParameter<TCustomParameter> Cast(object parameter)
  16. {
  17. CommandParameter<object> commandParameter = parameter as CommandParameter<object>;
  18. if (commandParameter == null)
  19. {
  20. throw new InvalidCastException($"Failed to case {parameter.GetType()} to {typeof(CommandParameter<object>)}");
  21. }
  22. return new CommandParameter<TCustomParameter>((TCustomParameter)commandParameter.CustomParameter);
  23. }
  24. }
  25. }