Class BinaryBooleanAttribute
- Namespace
- Yarhl.IO.Serialization.Attributes
- Assembly
- Yarhl.dll
Define how to read and write a boolean value.
[AttributeUsage(AttributeTargets.Property)]
public sealed class BinaryBooleanAttribute : Attribute
- Inheritance
-
BinaryBooleanAttribute
- Inherited Members
Constructors
BinaryBooleanAttribute()
Initializes a new instance of the BinaryBooleanAttribute class.
public BinaryBooleanAttribute()
Properties
FalseValue
Gets or sets the value equals to false.
public object FalseValue { get; set; }
Property Value
TrueValue
Gets or sets the value equals to true.
public object TrueValue { get; set; }
Property Value
UnderlyingType
Gets or sets the underlying type to use to serialize and deserialize.
public Type UnderlyingType { get; set; }