Signum.Windows.AutocompleteTextBox.Suggest C# (CSharp) Method

Suggest() private method

private Suggest ( ) : void
return void
        private void Suggest()
        {
            if (txtBox.Text.Length < MinTypedCharacters)
            {
                pop.IsOpen = false;
                lstBox.ItemsSource = null;
                return;
            }

            var s = source;

            if (s != null)
                s.Cancel();

            delayTimer.Start(); 
        }