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