コード例 #1
0
ファイル: MessageModel.cs プロジェクト: GataullinRR/Blog
 public JSHandledAction(string name, string functionName, AnchorAnctionType actionType = default) : base(name, actionType)
 {
     FunctionName = functionName ?? throw new ArgumentNullException(nameof(functionName));
 }
コード例 #2
0
ファイル: MessageModel.cs プロジェクト: GataullinRR/Blog
 protected ActionBase(string name, AnchorAnctionType actionType)
 {
     Name       = name ?? throw new ArgumentNullException(nameof(name));
     ActionType = actionType;
 }