Interface IVariableLengthField
Represents the variable-length field type.
Namespace: OnixS.SimpleBinaryEncoding
Assembly: OnixS.SimpleBinaryEncoding.dll
Syntax
public interface IVariableLengthField : IComposite, IComparable<IVariableLengthField>
Properties
Length
Length in bytes.
Declaration
UInt16 Length { get; }
Property Value
Type | Description |
---|---|
UInt16 |
RawValue
Gets raw byte data.
Declaration
ReadOnlySpan<byte> RawValue { get; set; }
Property Value
Type | Description |
---|---|
ReadOnlySpan<System.Byte> |
StringValue
Gets ASCII string value.
Declaration
string StringValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |