Base64ParserOptions Enumeration

Named constants to specify options for the parsing of Base64-encoded strings. The flags can be combined.

Definition

Namespace: FolkerKinzel.Strings
Assembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
C#
[FlagsAttribute]
public enum Base64ParserOptions

Members

None0None of the flags has been set.
AcceptMissingPadding1Setting the flag lets the parser automatically add missing padding characters at the end of the Base64-encoded data.
AcceptBase64Url2 Setting the flag lets the parser accept Base64Url too (RFC 4648, chapter 5). (The flag should normally be combined with AcceptMissingPadding.)

See Also