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 ) };
        }