예제 #1
0
 /// <summary>
 /// Fires the ArgumentsReceived event.
 /// </summary>
 /// <param name="arguments">The arguments to pass with the ArgumentsReceivedEventArgs.</param>
 private void OnArgumentsReceived(string[] arguments)
 {
     ArgumentsReceived?.Invoke(this, new ArgumentsReceivedEventArgs()
     {
         Args = arguments
     });
 }
예제 #2
0
 private void CallOnArgumentsReceived(object state)
 {
     ArgumentsReceived?.Invoke(this, new ArgumentsReceivedEventArgs {
         Args = (string[])state
     });
 }
예제 #3
0
 private void OnArgumentsReceived(IList <string> value)
 {
     ArgumentsReceived?.Invoke(this, value);
 }