Base64ParserOptions Enumeration
Named constants to specify options for the parsing of Base64-encoded strings.
The flags can be combined.
Namespace: FolkerKinzel.StringsAssembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
[FlagsAttribute]
public enum Base64ParserOptions
<FlagsAttribute>
Public Enumeration Base64ParserOptions
[FlagsAttribute]
public enum class Base64ParserOptions
[<FlagsAttribute>]
type Base64ParserOptions
| None | 0 | None of the flags has been set. |
| AcceptMissingPadding | 1 | Setting the flag lets the parser automatically add missing padding
characters at the end of the Base64-encoded data. |
| AcceptBase64Url | 2 |
Setting the flag lets the parser accept Base64Url too (RFC 4648, chapter 5).
(The flag should normally be combined with AcceptMissingPadding.)
|