Class ServerSettingParameter
Represents server setting parameter.
Inheritance
ServerSettingParameter
Implements
Namespace: BiExcellence.OpenBi.Api.Commands.ServerSettings
Assembly: BiExcellence.OpenBi.Api.ServerSettings.dll
Syntax
public class ServerSettingParameter : IServerSettingParameter
Constructors
ServerSettingParameter()
Initializes a new instance of the ServerSettingParameter class.
Declaration
public ServerSettingParameter()
ServerSettingParameter(string, string)
Initializes a new instance of the ServerSettingParameter class with name and value.
Declaration
public ServerSettingParameter(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name. |
string | value | The value. |
Properties
Attributes
Gets the attributes.
Declaration
public IDictionary<string, string> Attributes { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Name
Gets or sets the name.
Declaration
public string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
Gets or sets the value.
Declaration
public string? Value { get; set; }
Property Value
Type | Description |
---|---|
string |