plaintext.cs 367 B

123456789101112131415
  1. using System;
  2. using ZYSocket;
  3. using ZYSocket.FiberStream;
  4. namespace PlatformBenchmarks
  5. {
  6. public partial class HttpHandler
  7. {
  8. public void Plaintext( IFiberRw<HttpToken> fiberRw, ref WriteBytes write)
  9. {
  10. write.Write(_result_plaintext.Data, 0, _result_plaintext.Length);
  11. OnCompleted(fiberRw, write);
  12. }
  13. }
  14. }