Skip to main content

AppInfo

App Info and

Assembly: ServiceStack.Client.dll
View Source
Declaration
[Exclude(Feature.Soap)]
public class AppInfo : IMeta

Properties

BaseUrl

The App's BaseUrl

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

ServiceStackVersion

The ServiceStack Version

View Source
Declaration
public string ServiceStackVersion { get; }

ServiceName

Name of the ServiceStack Instance

View Source
Declaration
public string ServiceName { 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; }

BrandUrl

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

View Source
Declaration
public string BrandUrl { 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; }

TextColor

The default color of text

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

LinkColor

The default color of links

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

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

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

Meta

Custom User-Defined Attributes

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

Implements