CborReader.PeekTag Method

Definition

Important

This API is not CLS-compliant.

Reads the next data item as a semantic tag (major type 6), without advancing the reader.

public:
 System::Formats::Cbor::CborTag PeekTag();
[System.CLSCompliant(false)]
public System.Formats.Cbor.CborTag PeekTag ();
[<System.CLSCompliant(false)>]
member this.PeekTag : unit -> System.Formats.Cbor.CborTag
Public Function PeekTag () As CborTag

Returns

The decoded value.

Attributes

Exceptions

The next data item does not have the correct major type.

The next value has an invalid CBOR encoding.

-or-

There was an unexpected end of CBOR encoding data.

-or-

The next value uses a CBOR encoding that is not valid under the current conformance mode.

Remarks

Useful in scenarios where the semantic value decoder needs to be determined at run time.

Applies to