public override bool IsFilterCharacter(CompletionItem completionItem, char ch, string textTypedSoFar)
        {
            // If they've typed '\\', then we do not consider \ to be a filter character.  We want to
            // just commit at this point.
            if (textTypedSoFar == NetworkPath)
            {
                return(false);
            }

            return(PathCompletionUtilities.IsFilterCharacter(completionItem, ch, textTypedSoFar));
        }
 public override bool IsFilterCharacter(CompletionItem completionItem, char ch, string textTypedSoFar)
 {
     return(PathCompletionUtilities.IsFilterCharacter(completionItem, ch, textTypedSoFar));
 }