Exemple #1
0
 public JSHandledAction(string name, string functionName, AnchorAnctionType actionType = default) : base(name, actionType)
 {
     FunctionName = functionName ?? throw new ArgumentNullException(nameof(functionName));
 }
Exemple #2
0
 protected ActionBase(string name, AnchorAnctionType actionType)
 {
     Name       = name ?? throw new ArgumentNullException(nameof(name));
     ActionType = actionType;
 }