EditorClient.Client.Reconnect C# (CSharp) Method

Reconnect() private method

private Reconnect ( int retryCount ) : void
retryCount int
return void
        private void Reconnect(int retryCount)
        {
            retryCount++;
            _readBuffer.SetLength(0);
            Disconnect();
            Connect(_currentPort, retryCount);
        }