view Demo/WebServices/Client/WebClient/WebOperationExceptionEventArgs.cs @ 9:1e85f66cf767 default tip

update bltoolkit
author nickolay
date Thu, 05 Apr 2018 20:53:26 +0300
parents f990fcb411a9
children
line wrap: on
line source

using System;

namespace Demo.WebServices.Client.WebClient
{
	public class WebOperationExceptionEventArgs : WebOperationCancelledEventArgs
	{
		private readonly Exception _exception;
		public           Exception Exception
		{
			get { return _exception; }
		}

		private bool _retry;
		public  bool  Retry
		{
			get { return _retry;  }
			set { _retry = value; }
		}

		public WebOperationExceptionEventArgs(string url, string methodName, object[] parameters, Exception exception)
			: base(url, methodName, parameters)
		{
			_exception = exception;
		}
	}
}