Enum BencodeTokenType
Indicates the type of token that must be read next.
Namespace: ItsyBitsy.Bencoding
Assembly: ItsyBitsy.Bencoding.dll
Syntax
public enum BencodeTokenType
Fields
| Name | Description |
|---|---|
| DictionaryHead | Indicates that the beginning of a dictionary must be read next. |
| DictionaryTail | Indicates that the end of a list or dictionary must be read next. |
| Integer | Indicates that an integer must be read next. |
| Key | Indicates that a key must be read next. |
| ListHead | Indicates that the beginning of a list must be read next. |
| ListTail | Indicates that the end of a list must be read next. |
| None | Indicates that no more tokens can be read. |
| String | Indicates that a string must be read next. |