예제 #1
0
 /// <summary>
 /// Invokes each plugin's <see cref="CorePlugin.OnExecContextChanged"/> event handler.
 /// </summary>
 public void InvokeExecContextChanged(CoheeApp.ExecutionContext previousContext)
 {
     foreach (CorePlugin plugin in this.LoadedPlugins)
     {
         plugin.OnExecContextChanged(previousContext);
     }
 }
예제 #2
0
 /// <summary>
 /// Called when Cohee's <see cref="CoheeApp.ExecutionContext"/> changes.
 /// </summary>
 internal protected virtual void OnExecContextChanged(CoheeApp.ExecutionContext previousContext)
 {
 }