Table of Contents

Class BinaryEnumAttribute

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

Define how to read and write a Enum value. Default type is defined in the enum type

[AttributeUsage(AttributeTargets.Property)]
public sealed class BinaryEnumAttribute : Attribute
Inheritance
BinaryEnumAttribute
Inherited Members

Constructors

BinaryEnumAttribute()

Initializes a new instance of the BinaryEnumAttribute class.

public BinaryEnumAttribute()

Properties

UnderlyingType

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

public Type? UnderlyingType { get; set; }

Property Value

Type

Remarks

If set to null (default), it will use the defined underlying type in the enumaration type.