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.
public int CodePage { get; set; }
Property Value
FixedSize
Gets or sets the fixed size (in bytes) of the string.
public int FixedSize { get; set; }
Property Value
MaxSize
Gets or sets the max size (in bytes) of the string.
public int MaxSize { get; set; }
Property Value
SizeType
Gets or sets the size value type.
public Type? SizeType { get; set; }
Property Value
Terminator
Gets or sets the string terminator.
public string Terminator { get; set; }