Rock.UniversalSearch.IndexModels.SitePageIndex.FormatSearchResult C# (CSharp) Метод

FormatSearchResult() публичный Метод

Formats the search result.
public FormatSearchResult ( Person person, object>.Dictionary displayOptions = null ) : FormattedSearchResult
person Person The person.
displayOptions object>.Dictionary The display options.
Результат FormattedSearchResult
        public override FormattedSearchResult FormatSearchResult( Person person, Dictionary<string, object> displayOptions = null )
        {
            return new FormattedSearchResult() { IsViewAllowed = true, FormattedResult = string.Format( "<a href='{0}'>{1}</a>", this.Url, this.PageTitle ) };
        }