Esempio n. 1
0
 internal static void RaiseOnBeforeCommandLineProcessing(CfxOnBeforeCommandLineProcessingEventArgs e)
 {
     if (OnBeforeCommandLineProcessing != null)
     {
         OnBeforeCommandLineProcessing.Invoke(e);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// 执行浏览器命令行处理之前执行回调事件
 /// </summary>
 /// <param name="e">浏览器命令行处理事件参数</param>
 internal static void RaiseOnBeforeCommandLineProcessing(CfxOnBeforeCommandLineProcessingEventArgs e)
 {
     OnBeforeCommandLineProcessing?.Invoke(null, e);
 }