Esempio n. 1
0
 async public Task WriteTo(SslStream stream)
 {
     Prologue.WriteTo(stream);
     await stream.FlushAsync();
     if (Content != null)
     {
         await Content.CopyToAsync(stream, Content.Length);
     }
 }