AzureWebFarm.Services.SyncService.OnPing C# (CSharp) Method

OnPing() protected method

protected OnPing ( ) : void
return void
        protected virtual void OnPing()
        {
            try
            {
                var handler = Ping;
                if (handler != null)
                    handler(this, EventArgs.Empty);
            }
            catch (Exception e)
            {
                _logger.Error("Error executing OnPing event", e);
            }
        }