Classifier.Models.WebSearchClassifyResult.ExtendedToString C# (CSharp) Method

ExtendedToString() public method

public ExtendedToString ( ) : string
return 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;
        }