NLog.LayoutRenderers.LayoutRenderer.Close C# (CSharp) Method

Close() private method

Closes this instance.
private Close ( ) : void
return void
        internal void Close()
        {
            if (this.isInitialized)
            {
                this.LoggingConfiguration = null;
                this.isInitialized = false;
                this.CloseLayoutRenderer();
            }
        }