NLog.Targets.Target.FlushAsync C# (CSharp) Method

FlushAsync() protected method

Flush any pending log messages asynchronously (in case of asynchronous targets).
protected FlushAsync ( AsyncContinuation asyncContinuation ) : void
asyncContinuation AsyncContinuation The asynchronous continuation.
return void
        protected virtual void FlushAsync(AsyncContinuation asyncContinuation)
        {
            asyncContinuation(null);
        }