Class ConnectionTemplateParameter
Represents a connection template parameter.
Inheritance
ConnectionTemplateParameter
Implements
Namespace: BiExcellence.OpenBi.Api.Commands.ConnectionTemplates
Assembly: BiExcellence.OpenBi.Api.DataProvider.dll
Syntax
public class ConnectionTemplateParameter : IConnectionTemplateParameter
Constructors
ConnectionTemplateParameter(IConnectionTemplateParameter)
Copy constructor.
Declaration
public ConnectionTemplateParameter(IConnectionTemplateParameter connectionTemplateParameter)
Parameters
| Type | Name | Description |
|---|---|---|
| IConnectionTemplateParameter | connectionTemplateParameter | The connection template parameter. |
ConnectionTemplateParameter(string, string, ConnectionTemplateParameterType, bool)
Initializes a new instance of the ConnectionTemplateParameter class.
Declaration
public ConnectionTemplateParameter(string name, string value, ConnectionTemplateParameterType type, bool isSupplied)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name. |
| string | value | The value. |
| ConnectionTemplateParameterType | type | The type. |
| bool | isSupplied | The is supplied. |
ConnectionTemplateParameter(string, string, ConnectionTemplateParameterType)
Initializes a new instance of the ConnectionTemplateParameter class with IsSupplied set to false.
Declaration
public ConnectionTemplateParameter(string name, string value, ConnectionTemplateParameterType type)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name. |
| string | value | The value. |
| ConnectionTemplateParameterType | type | The type. |
ConnectionTemplateParameter(string, string)
Initializes a new instance of the ConnectionTemplateParameter class with Type set to String.
Declaration
public ConnectionTemplateParameter(string name, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The name. |
| string | value | The value. |
Properties
IsSupplied
Gets or sets whether the parameter is supplied.
Declaration
public bool IsSupplied { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Type
Gets or sets the type.
Declaration
public ConnectionTemplateParameterType Type { get; set; }
Property Value
| Type | Description |
|---|---|
| ConnectionTemplateParameterType |
Value
Gets or sets the value.
Declaration
public string? Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string |