.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm using TCPClient to connect to device and get some data as a strings, then I'm trying to save data to DB and getting "Cannot access a disposed object" error." Maybe problem is because I'm trying to save to DB from async callback function? Please take a look, here are two functions: first one gets network stream, already connected to the device and starts reading data, second one is callback: private void ReadDataAsync(NetworkStream nwStream) { byte buffer = new byte[1024]; messageStream mStream = new messageStream(nwStream, buffer); if (nwS...