4 implementations of GetMaxDecodedLength
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (2)
1471
public int
GetMaxDecodedLength
(int utf8Length) => Base64.GetMaxDecodedFromUtf8Length(utf8Length);
1693
public int
GetMaxDecodedLength
(int sourceLength) => Base64.GetMaxDecodedFromUtf8Length(sourceLength);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlDecoder.cs (2)
366
public int
GetMaxDecodedLength
(int sourceLength) => Base64Url.GetMaxDecodedLength(sourceLength);
510
public int
GetMaxDecodedLength
(int sourceLength) => default(Base64UrlDecoderByte).GetMaxDecodedLength(sourceLength);
1 reference to GetMaxDecodedLength
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (1)
41
int decodedLength = decoder.
GetMaxDecodedLength
(srcLength);