Class AbstractOptions
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mars.Interfaces.Model.Options
Assembly: Mars.Interfaces.dll
Syntax
public abstract class AbstractOptions : IDisposable
Properties
| Improve this Doc View SourceCultureInfo
Gets or sets the culture information used which
sets a country- or region-specific serialization logic.
Default is en-EN.
Declaration
[JsonProperty("culture", NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(CultureConverter))]
public CultureInfo CultureInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Globalization.CultureInfo |
GlobalConfig
Reference to parent global inputConfiguration object
Declaration
public Globals GlobalConfig { get; set; }
Property Value
Type | Description |
---|---|
Globals |
NumberFormat
The culture-specific format of numeric values when they serialized.
Declaration
[JsonProperty("numberFormat", NullValueHandling = NullValueHandling.Ignore)]
public string NumberFormat { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceDispose()
Declaration
public virtual void Dispose()
Implements
System.IDisposable