Click or drag to resize

ITextApi Interface

Provide method for working with text resources

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
public interface ITextApi

The ITextApi type exposes the following members.

Methods
 NameDescription
Public methodCode exampleCacheAndTranslate Cache and translate a text resource by a given key with language name (en or da)
Public methodCode exampleLoadTextResources Load text resources by a language name which could be en or da
Example
C#
var textApi = ctx.Use<ITextApi>();
var textResult = textApi.LoadTextResources("en")
Public methodCode exampleTranslate Translate a text resource by a given key with language name (en or da)
Example
C#
var textApi = ctx.Use<ITextApi>();
var translatedText = textApi.Translate("cw_search_result_limit_exceeded", "en");
Top
See Also