Example #1
0
		private void EventHandler_Network_ErrorOccurred(
			object sender, NetworkControllerErrorOccuredEventArgs e)
		{
			OnNetworkControllerHasError(e);
		}
Example #2
0
		private void OnNetworkControllerHasError(
			NetworkControllerErrorOccuredEventArgs args)
		{
			if (args == null)
			{
				throw new ArgumentNullException();
			}

			if (NetworkControllerHasError != null)
			{
				NetworkControllerHasError(this, args);
			}
		}
Example #3
0
		protected void OnErrorOccured(NetworkControllerErrorOccuredEventArgs args)
		{
			if (args == null)
			{
				throw new ArgumentNullException();
			}
			if (ErrorOccurred != null)
			{
				ErrorOccurred(this, args);
			}
		}