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
Properties
ParameterEncrypted
Value must not be sent to the client, only usable in cloud
[JsonIgnore]
public bool ParameterEncrypted { get; set; }
Property Value
ParameterName
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string ParameterName { get; set; }
Property Value
ParameterValue
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string? ParameterValue { get; set; }
Property Value
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.