TlvReader Class
Namespace: Yubico.Core.Tlv Assembly: Yubico.Core.dllUse this class to parse TLV (tag-length-value) constructions.
public sealed class TlvReader
Remarks
See the User's Manual entry on TLV for an in-depth discussion of what TLV is and a general description of how to use this class.
Constructors
Name | Description |
---|---|
TlvReader(ReadOnlyMemory<byte>) | Build a new Reader object based on the given encoding. |
Properties
Name | Description |
---|---|
HasData | Indicates whether there is more data to read or not. |
Methods
Name | Description |
---|---|
PeekLength(int) | Skip the |
PeekTag(int) | Read the tag at the current data position, without advancing the reader. |
ReadByte(int) | Read the TLV at the current position, return the value as a byte, and move the position to the byte beyond the current TLV. |
ReadEncoded(int) | Return the entire encoding of the next element. |
ReadInt16(int, bool) | Read the TLV at the current position, return the value as a short (a two-byte integer), and move the position to the byte beyond the current TLV. |
ReadInt32(int, bool) | Read the TLV at the current position, return the value as an int (a four-byte integer), and move the position to the byte beyond the current TLV. |
ReadNestedTlv(int) | Read the TLV at the current position as a NestedTlv. Return a new TlvReader object whose position is the beginning of the NestedTlv's value, which is the tag of the NestedTlv's first sub-element. Move the position of the original reader to the byte beyond the current TLV. |
ReadString(int, Encoding) | Read the TLV at the current position, return the value as a string, and move the position to the byte beyond the current TLV. |
ReadUInt16(int, bool) | Read the TLV at the current position, return the value as an unsigned short (a two-byte unsigned integer), and move the position to the byte beyond the current TLV. |
ReadValue(int) | Read the TLV at the current position, return the value as a byte array, and move the position to the byte beyond the current TLV. |
TryReadByte(out byte, int) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadEncoded(out ReadOnlyMemory<byte>, int) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadInt16(out short, int, bool) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadInt32(out int, int, bool) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadNestedTlv(out TlvReader, int) | Try to read the TLV at the current position as a NestedTlv. If this
succeeds, return true and set the |
TryReadString(out string, int, Encoding) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadUInt16(out ushort, int, bool) | Try to read the TLV at the current position. If this succeeds, return
true and set the |
TryReadValue(out ReadOnlyMemory<byte>, int) | Try to read the TLV at the current position. If this succeeds, return
true and set the |