Esempio n. 1
0
        /// <summary>
        /// Raises the <see cref="StatusTextChange"/> event
        /// </summary>
        /// <param name="e"></param>
        /// <exception cref="ArgumentNullException">Thrown when StatusTextEventArgs is null</exception>
        protected void OnStatusTextChange(StatusTextEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException("e");
            }

            StatusTextChange?.Invoke(this, e);
        }
Esempio n. 2
0
            public void StatusTextChange(string Text)
            {
                StatusTextEventArgs args = new StatusTextEventArgs(Text);

                _Browser.OnStatusTextChange(args);
            }