public virtual bool QueryInvalidEncoding(__VSTFF format, out string errorMessage);
/// <include file='doc\LanguageService.uex' path='docs/doc[@for="LanguageService.QueryInvalidEncoding"]/*' /> /// Return true if the given encoding information is invalid for your language service /// Default always returns false. If you return true, then also return an error /// message to display to the user. public virtual bool QueryInvalidEncoding(__VSTFF format, out string errorMessage) { errorMessage = null; return false; }