Class ConfigurationParameter
- Namespace
- RetailForce.Fiscalisation.Configuration
- Assembly
- RetailForce.Fiscalisation.Model.dll
Represents a configuration parameter.
public class ConfigurationParameter : IEquatable<ConfigurationParameter>
- Inheritance
-
objectConfigurationParameter
- Implements
- Derived
- Inherited Members
Constructors
ConfigurationParameter()
Constructor.
public ConfigurationParameter()
ConfigurationParameter(string, string, bool)
Constructor.
public ConfigurationParameter(string name, string value, bool encrypted)
Parameters
namestringvaluestringencryptedbool
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
otherConfigurationParameterAn object to compare with this object.