Windows ストア (8\Metro\RT) アプリでソケット クライアント (TCP) を作成しており、次のコードを使用してデータを送信しようとしています。
await _socket.ConnectAsync(new HostName(ipAddress), port);
_dataWriter = new DataWriter(_socket.OutputStream);
_dataWriter.WriteBytes(bytes);
await _dataWriter.StoreAsync();
//Does execution in this line mean that bytes were sent
//and TCP packet acknowledge has been received?
質問はコメントにあります。