Table of Contents

Class ConfigurationParameter

Namespace
RetailForce.Fiscalisation.Configuration
Assembly
RetailForce.Fiscalisation.Model.dll

Represents a configuration parameter.

public class ConfigurationParameter : IEquatable<ConfigurationParameter>
Inheritance
ConfigurationParameter
Implements
Derived
Inherited Members

Constructors

ConfigurationParameter()

Constructor.

public ConfigurationParameter()

ConfigurationParameter(string, string, bool)

Constructor.

public ConfigurationParameter(string name, string value, bool encrypted)

Parameters

name string
value string
encrypted bool

Properties

ParameterEncrypted

Value must not be sent to the client, only usable in cloud

[JsonIgnore]
public bool ParameterEncrypted { get; set; }

Property Value

bool

ParameterName

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string ParameterName { get; set; }

Property Value

string

ParameterValue

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string? ParameterValue { get; set; }

Property Value

string

Methods

Equals(ConfigurationParameter)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(ConfigurationParameter other)

Parameters

other ConfigurationParameter

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.