コード例 #1
0
 public void OnVideoEnd(VideoEventArgs e)
 {
     VideoEnd?.Invoke(this, e);
     OnVideoEvent(e);
 }
コード例 #2
0
 /// <summary>
 /// Fires the <see cref="onVideoEnd"/> and <see cref="VideoEnd"/> events.
 /// </summary>
 private void OnVideoEnd()
 {
     onVideoEnd?.Invoke();
     VideoEnd?.Invoke(this, EventArgs.Empty);
 }