Classifier.Models.WebSearchClassifyResult.ExtendedToString C# (CSharp) Méthode

ExtendedToString() public méthode

public ExtendedToString ( ) : string
Résultat string
        public string ExtendedToString()
        {
            string returnValue = this.ToString();
            returnValue += !string.IsNullOrEmpty(Result) ? "Result=" + Result + ", " : "Result=null or empty, ";
            returnValue += SearchResult != null ? "WebSearchResult=" + SearchResult.ToString() + ", " : "SearchResult=Empty.";
            return returnValue;
        }