Summary
Create the encoder/decoder specifying all options manually.
Syntax
public Base32Url(bool padding, bool caseSensitive, bool ignoreWhiteSpaceWhenDecoding, string alternateAlphabet)
Parameters
Name |
Type |
Description |
padding |
bool |
Require/use padding characters? |
caseSensitive |
bool |
Be case sensitive when decoding? |
ignoreWhiteSpaceWhenDecoding |
bool |
Ignore / allow white space when decoding? |
alternateAlphabet |
string |
Alphabet to use (such as Base32Url.ZBase32Alphabet, Base32Url.Base32StandardAlphabet or your own custom 32 character alphabet string) |
Return Value