4 implementations of IBase64Decoder
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (2)
1384internal readonly struct Base64DecoderByte : IBase64Decoder<byte> 1667internal readonly struct Base64DecoderChar : IBase64Decoder<ushort>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlDecoder.cs (2)
280private readonly struct Base64UrlDecoderByte : IBase64Decoder<byte> 484private readonly struct Base64UrlDecoderChar : IBase64Decoder<ushort>
16 references to IBase64Decoder
System.Private.CoreLib (16)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64DecoderHelper.cs (13)
25where TBase64Decoder : IBase64Decoder<T> 338where TBase64Decoder : IBase64Decoder<byte> 511where TBase64Decoder : IBase64Decoder<byte> 616where TBase64Decoder : IBase64Decoder<ushort> 721where TBase64Decoder : IBase64Decoder<byte> 740where TBase64Decoder : IBase64Decoder<ushort> 758where TBase64Decoder : IBase64Decoder<byte> 840where TBase64Decoder : IBase64Decoder<T> 907where TBase64Decoder : IBase64Decoder<T> 1033where TBase64Decoder : IBase64Decoder<T> 1175where TBase64Decoder : IBase64Decoder<T> 1663where TBase64Decoder : IBase64Decoder<byte> => 1879Span<byte> bytes, ref int bytesConsumed, ref int bytesWritten, bool isFinalBlock = true) where TBase64Decoder : IBase64Decoder<ushort> =>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Helper\Base64Helper.cs (1)
154where TTBase64Decoder : IBase64Decoder<T>;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Base64Url\Base64UrlDecoder.cs (2)
480ref int bytesConsumed, ref int bytesWritten, bool isFinalBlock = true) where TBase64Decoder : IBase64Decoder<byte> => 565ref int bytesConsumed, ref int bytesWritten, bool isFinalBlock = true) where TBase64Decoder : IBase64Decoder<ushort> =>