Properties
| Name | Access | Type | Description |
|---|---|---|---|
| ApplicationId | Read, Write | Nullable of Guid | Application Id |
| BestMatch | Read, Write | String | Best Match |
| BestMatchTitle | Read, Write | String | Best Match Title |
| Body | Read, Write | String | Body |
| Category | Read, Write | String | Category |
| ContainerId | Read, Write | Nullable of Guid | Container Id |
| Content | Read | Content | Content |
| ContentId | Read, Write | String | Content Id |
| ContentType | Read, Write | String | Content Type |
| ContentTypeId | Read, Write | Nullable of Guid | Content Type Id |
| Date | Read, Write | Nullable of DateTime | Date |
| Errors | Read | IList of Error | Errors |
| Group | Read, Write | Group | Group |
| GuidId | Read, Write | Nullable of Guid | Guid Id |
| Id | Read, Write | String | Id |
| IndexedAt | Read, Write | Nullable of DateTime | Indexed At |
| IsApplication | Read, Write | Nullable of Boolean | Is Application |
| IsContainer | Read, Write | Nullable of Boolean | Is Container |
| IsContent | Read, Write | Nullable of Boolean | Is Content |
| SearchFields | Read, Write | IList of SearchField | Search Fields |
| SectionId | Read, Write | Nullable of Int32 | Section Id |
| Tags | Read, Write | IList of String | Tags |
| ThreadId | Read, Write | Nullable of Int32 | Thread Id |
| Title | Read, Write | String | Title |
| Url | Read, Write | String | Url |
| Users | Read, Write | IList of User | Users |
| Warnings | Read | IList of Warning | Warnings |
| WikiId | Read, Write | Nullable of Int32 | Wiki Id |
Methods
HasErrors
Velocity
#set($booleanResponse = $searchResult.HasErrors())
JavaScript
var booleanResponse = searchResult.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $searchResult.HasWarnings())
JavaScript
var booleanResponse = searchResult.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $searchResult.HasWarningsOrErrors())
JavaScript
var booleanResponse = searchResult.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$searchResult.ThrowErrors()
JavaScript
searchResult.ThrowErrors();
Returns
NothingViewHtml
ViewHtml Overload 1
Velocity
#set($stringResponse = $searchResult.ViewHtml())
JavaScript
var stringResponse = searchResult.ViewHtml();
ViewHtml Overload 2
Velocity
#set($stringResponse = $searchResult.ViewHtml($target))
JavaScript
var stringResponse = searchResult.ViewHtml(target);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| target | String | Target | Required |
Returns
String