Table of Contents

Class BinaryStringAttribute

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

Define how to read and write a string value.

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

Constructors

BinaryStringAttribute()

Initializes a new instance of the BinaryStringAttribute class.

public BinaryStringAttribute()

Properties

CodePage

Gets or sets the string code page. Set to -1 to use the reader/writer encoding.

public int CodePage { get; set; }

Property Value

int

FixedSize

Gets or sets the fixed size (in bytes) of the string. Set to -1 if the string is length variable.

public int FixedSize { get; set; }

Property Value

int

MaxSize

Gets or sets the max size (in bytes) of the string. Set to -1 if the string has no max size.

public int MaxSize { get; set; }

Property Value

int

SizeType

Gets or sets the size value type. Set to null if string doesn't have the length serialized.

public Type? SizeType { get; set; }

Property Value

Type

Terminator

Gets or sets the string terminator.

public string Terminator { get; set; }

Property Value

string