Class SearchArgs
Inheritance
Namespace: Telerik.Reporting.Services.ServiceStack
Assembly: Telerik.Reporting.Services.ServiceStack.dll
Syntax
public class SearchArgs
Constructors
SearchArgs()
Declaration
public SearchArgs()
Properties
ClientId
The client session ID which contains the document
Declaration
public string ClientId { get; set; }
Property Value
System.String
|
DocumentId
Gets or sets a string representation of a report document reference
Declaration
public string DocumentId { get; set; }
Property Value
System.String
|
Remarks
The string representation should be of a TypeReportSource or of an UriReportSource. The rest of the report sources types are not supported.
InstanceId
The report instance used for the document
Declaration
public string InstanceId { get; set; }
Property Value
System.String
|
MatchCase
Determines if the search is case-sensitive
Declaration
public bool MatchCase { get; set; }
Property Value
System.Boolean
|
MatchWholeWord
Determines if the search should respect whole words only
Declaration
public bool MatchWholeWord { get; set; }
Property Value
System.Boolean
|
SearchToken
The token used to perform the search
Declaration
public string SearchToken { get; set; }
Property Value
System.String
|
UseRegularExpressions
Determines if the search token represents a regular expression
Declaration
public bool UseRegularExpressions { get; set; }
Property Value
System.Boolean
|