Class LanguageTextValue
Represents a language text value.
Inheritance
LanguageTextValue
Implements
Namespace: BiExcellence.OpenBi.Api.Commands.LanguageTexts
Assembly: BiExcellence.OpenBi.Api.LanguageText.dll
Syntax
public class LanguageTextValue : ILanguageTextValue
Constructors
LanguageTextValue(LanguageText, string)
Initializes a new instance of the LanguageTextValue class.
Declaration
public LanguageTextValue(LanguageText languageText, string language)
Parameters
Type | Name | Description |
---|---|---|
LanguageText | languageText | The language text. |
string | language | The language. |
LanguageTextValue(LanguageText)
Initializes a new instance of the LanguageTextValue class with an empty Language.
Declaration
public LanguageTextValue(LanguageText languageText)
Parameters
Type | Name | Description |
---|---|---|
LanguageText | languageText | The language text. |
LanguageTextValue(string, string)
Initializes a new instance of the LanguageTextValue class.
Declaration
public LanguageTextValue(string id, string language)
Parameters
Type | Name | Description |
---|---|---|
string | id | The id. |
string | language | The language. |
LanguageTextValue(string)
Initializes a new instance of the LanguageTextValue class with an empty Language.
Declaration
public LanguageTextValue(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The id. |
Properties
Id
Gets the id.
Declaration
public string Id { get; protected set; }
Property Value
Type | Description |
---|---|
string |
Language
Gets or sets the language.
Declaration
public string Language { get; protected set; }
Property Value
Type | Description |
---|---|
string |
Text
Gets or sets the text.
Declaration
public string? Text { get; set; }
Property Value
Type | Description |
---|---|
string |