Example #1
0
 public static void End(this IUVStream <ArraySegment <byte> > stream, byte[] data, int index, int count)
 {
     stream.End(data, index, count, null);
 }
Example #2
0
 public static int End(this IUVStream <ArraySegment <byte> > stream, string text)
 {
     return(stream.End(Encoding.Default, text));
 }
Example #3
0
 public static int End(this IUVStream <ArraySegment <byte> > stream, string text, Action <Exception> callback)
 {
     return(stream.End(Encoding.Default, text, callback));
 }
Example #4
0
 public static int End(this IUVStream <ArraySegment <byte> > stream, Encoding encoding, string text)
 {
     return(stream.End(encoding, text, null));
 }
Example #5
0
 public static void End(this IUVStream <ArraySegment <byte> > stream, ArraySegment <byte> data)
 {
     stream.End(data, null);
 }