Table of Contents

Class BinaryBooleanAttribute

Namespace
Yarhl.IO.Serialization.Attributes
Assembly
Yarhl.dll

Define how to read and write a boolean value. Default type is int

[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

object

TrueValue

Gets or sets the value equals to true.

public object TrueValue { get; set; }

Property Value

object

UnderlyingType

Gets or sets the underlying type to use to serialize and deserialize.

public Type UnderlyingType { get; set; }

Property Value

Type