Interface IServerSettingParameters
Represents a collection of server setting parameters.
Namespace: BiExcellence.OpenBi.Api.Commands.ServerSettings
Assembly: BiExcellence.OpenBi.Api.ServerSettings.dll
Syntax
public interface IServerSettingParameters
Properties
this[string]
Returns the server setting parameter by name.
Declaration
IServerSettingParameter? this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
string | name | The name. |
Property Value
Type | Description |
---|---|
IServerSettingParameter |
Methods
Remove(string)
Removes a server setting parameter by name.
Declaration
bool Remove(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | Then name. |
Returns
Type | Description |
---|---|
bool |
TryGetValue(string, out IServerSettingParameter)
Tries to get the server setting parameter by name.
Declaration
bool TryGetValue(string name, out IServerSettingParameter serverSettingParameter)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name. |
IServerSettingParameter | serverSettingParameter | The server setting parameter. |
Returns
Type | Description |
---|---|
bool |