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