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.5.0+6287955de434d14f61638ea0c3c40b499ae05cd1
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