Exemple #1
0
 private void PreviousLink_ExecutionTokenPreparing(object sender, ExecutionTokenPreparingEventArgs e)
 {
     OnExecutionTokenPreparing(e);             //left first
     ExecutionTokenPreparing?.Invoke(this, e); //then right
 }
Exemple #2
0
 void OnExecutionTokenPreparing(object?sender, ExecutionTokenPreparingEventArgs e)
 {
     ExecutionTokenPreparing?.Invoke(sender, e);
 }
Exemple #3
0
 /// <summary>
 /// Raises the <see cref="E:ExecutionTokenPreparing" /> event.
 /// </summary>
 /// <param name="e">The <see cref="ExecutionTokenPreparingEventArgs"/> instance containing the event data.</param>
 protected void OnExecutionTokenPreparing(ExecutionTokenPreparingEventArgs e)
 {
     ExecutionTokenPreparing?.Invoke(this, e);
 }
Exemple #4
0
 /// <summary>
 /// Override this if you want to examine or modify the command builder before the execution token is built.
 /// </summary>
 /// <param name="e">The <see cref="ExecutionTokenPreparingEventArgs"/> instance containing the event data.</param>
 protected virtual void OnExecutionTokenPreparing(ExecutionTokenPreparingEventArgs e)
 {
 }