Skip to main content

AutoQueryViewerConfig

Assembly: ServiceStack.dll
View Source
Declaration
public class AutoQueryViewerConfig : AppInfo, IMeta

Properties

ServiceBaseUrl

The BaseUrl of the ServiceStack instance (inferred)

View Source
Declaration
public string ServiceBaseUrl { get; set; }

Formats

The different Content Type formats to display

View Source
Declaration
public string[] Formats { get; set; }

MaxLimit

The configured MaxLimit for AutoQuery

View Source
Declaration
public int? MaxLimit { get; set; }

IsPublic

Whether to publish this Service to the public Services registry

View Source
Declaration
public bool IsPublic { get; set; }

OnlyShowAnnotatedServices

Only show AutoQuery Services attributed with [AutoQueryViewer]

View Source
Declaration
public bool OnlyShowAnnotatedServices { get; set; }

ImplicitConventions

List of different Search Filters available

View Source
Declaration
public List<AutoQueryConvention> ImplicitConventions { get; set; }

DefaultSearchField

The Column which should be selected by default

View Source
Declaration
public string DefaultSearchField { get; set; }

DefaultSearchType

The Query Type filter which should be selected by default

View Source
Declaration
public string DefaultSearchType { get; set; }

DefaultSearchText

The search text which should be populated by default

View Source
Declaration
public string DefaultSearchText { get; set; }

Inherited Properties

BackgroundColor

The default background color of each screen

View Source
Declaration
public string BackgroundColor { get; set; }

BackgroundImageUrl

The default background image of each screen anchored to the bottom left

View Source
Declaration
public string BackgroundImageUrl { get; set; }

BaseUrl

The App's BaseUrl

View Source
Declaration
public string BaseUrl { get; set; }

BrandImageUrl

A custom logo or image that users can click on to visit your site

View Source
Declaration
public string BrandImageUrl { get; set; }

BrandUrl

Link to your website users can click to find out more about you

View Source
Declaration
public string BrandUrl { get; set; }

IconUrl

The default icon for each of your App's Services

View Source
Declaration
public string IconUrl { get; set; }

JsTextCase

The configured JsConfig.TextCase

View Source
Declaration
public string JsTextCase { get; set; }

LinkColor

The default color of links

View Source
Declaration
public string LinkColor { get; set; }

Meta

Custom User-Defined Attributes

View Source
Declaration
public Dictionary<string, string> Meta { get; set; }

ServiceDescription

Textual description of the ServiceStack App (shown in Home Services list)

View Source
Declaration
public string ServiceDescription { get; set; }

ServiceIconUrl

Icon for this ServiceStack App (shown in Home Services list)

View Source
Declaration
public string ServiceIconUrl { get; set; }

ServiceName

Name of the ServiceStack Instance

View Source
Declaration
public string ServiceName { get; set; }

ServiceStackVersion

The ServiceStack Version

View Source
Declaration
public string ServiceStackVersion { get; }

TextColor

The default color of text

View Source
Declaration
public string TextColor { get; set; }

Implements