Esempio n. 1
0
 public CodeAction(CodeActionHandler codeHandler, [CallerFilePath] string callerPath = "", [CallerLineNumber] int callerLine = 0)
     : base()
 {
     this.RegisterSourceLocation(callerPath, callerLine);
     this.codeHandler = codeHandler ?? throw new ArgumentNullException(nameof(codeHandler));
 }