Azure.Storage.Internal.Avro.AvroParser
namespace Azure.Storage.Internal.Avro
{
internal static class AvroParser
{
public static Task<byte[]> ReadFixedBytesAsync(Stream stream, int length, bool async, CancellationToken cancellationToken);
public static Task<object> ReadNullAsync();
public static Task<bool> ReadBoolAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<long> ReadLongAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<int> ReadIntAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<float> ReadFloatAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<double> ReadDoubleAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<byte[]> ReadBytesAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<string> ReadStringAsync(Stream stream, bool async, CancellationToken cancellationToken);
public static Task<Dictionary<string, T>> ReadMapAsync<T>(Stream stream, Func<Stream, bool, CancellationToken, Task<T>> parseItemAsync, bool async, CancellationToken cancellationToken);
}
}