Example #1
0
        protected void OnQueryError(QueryErrorEventArgs e)
        {
            var handler = QueryError;

            if (handler != null)
            {
                handler(this, e);
            }
        }
        protected void OnQueryError(QueryErrorEventArgs e)
        {
            var handler = QueryError;

            if (handler != null)
            {
                if (e.Exception.GetBaseException().Message.Contains("NotFound"))
                {
                    handler(this, new QueryErrorEventArgs
                    {
                        Exception = new ArgumentException("Server Not Found", e.Exception)
                    });
                }
                else
                {
                    handler(this, e);
                }
            }
        }
 protected void OnQueryError(QueryErrorEventArgs e)
 {
     var handler = QueryError;
     if (handler != null) handler(this, e);
 }
        protected void OnQueryError(QueryErrorEventArgs e)
        {
            var handler = QueryError;
            if (handler != null)
            {
	            if(e.Exception.GetBaseException().Message.Contains("NotFound"))
					handler(this, new QueryErrorEventArgs
					{
						Exception = new ArgumentException("Server Not Found", e.Exception)
					});
	            else
					handler(this, e);
            }
        }