3 implementations of ReadAsync
SocialWeather (3)
Json\JSonStreamFormatter.cs (1)
12public async Task<T> ReadAsync(Stream stream)
Pipe\PipeWeatherStreamFormatter.cs (1)
10public async Task<WeatherReport> ReadAsync(Stream stream)
Protobuf\ProtobufWeatherStreamFormatter.cs (1)
10public Task<SocialWeather.WeatherReport> ReadAsync(Stream stream)
1 reference to ReadAsync
SocialWeather (1)
SocialWeatherConnectionHandler.cs (1)
47var weatherReport = await formatter.ReadAsync(stream);