Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit c9d4d28

Browse files
committed
Merge branch 'master' into beta
2 parents 5b797b8 + 7edf653 commit c9d4d28

File tree

5 files changed

+204
-3
lines changed

5 files changed

+204
-3
lines changed

docs/api/StreamExtended.Network.CopyStream.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,58 @@ <h5 class="returns">Returns</h5>
470470
</table>
471471

472472

473+
<a id="StreamExtended_Network_CopyStream_PeekBytesAsync_" data-uid="StreamExtended.Network.CopyStream.PeekBytesAsync*"></a>
474+
<h4 id="StreamExtended_Network_CopyStream_PeekBytesAsync_System_Int32_System_Int32_System_Threading_CancellationToken_" data-uid="StreamExtended.Network.CopyStream.PeekBytesAsync(System.Int32,System.Int32,System.Threading.CancellationToken)">PeekBytesAsync(Int32, Int32, CancellationToken)</h4>
475+
<div class="markdown level1 summary"></div>
476+
<div class="markdown level1 conceptual"></div>
477+
<h5 class="decalaration">Declaration</h5>
478+
<div class="codewrapper">
479+
<pre><code class="lang-csharp hljs">public Task&lt;byte[]&gt; PeekBytesAsync(int index, int size, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
480+
</div>
481+
<h5 class="parameters">Parameters</h5>
482+
<table class="table table-bordered table-striped table-condensed">
483+
<thead>
484+
<tr>
485+
<th>Type</th>
486+
<th>Name</th>
487+
<th>Description</th>
488+
</tr>
489+
</thead>
490+
<tbody>
491+
<tr>
492+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
493+
<td><span class="parametername">index</span></td>
494+
<td></td>
495+
</tr>
496+
<tr>
497+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
498+
<td><span class="parametername">size</span></td>
499+
<td></td>
500+
</tr>
501+
<tr>
502+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
503+
<td><span class="parametername">cancellationToken</span></td>
504+
<td></td>
505+
</tr>
506+
</tbody>
507+
</table>
508+
<h5 class="returns">Returns</h5>
509+
<table class="table table-bordered table-striped table-condensed">
510+
<thead>
511+
<tr>
512+
<th>Type</th>
513+
<th>Description</th>
514+
</tr>
515+
</thead>
516+
<tbody>
517+
<tr>
518+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task-1">Task</a>&lt;<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.byte">Byte</a>[]&gt;</td>
519+
<td></td>
520+
</tr>
521+
</tbody>
522+
</table>
523+
524+
473525
<a id="StreamExtended_Network_CopyStream_Read_" data-uid="StreamExtended.Network.CopyStream.Read*"></a>
474526
<h4 id="StreamExtended_Network_CopyStream_Read_System_Byte___System_Int32_System_Int32_" data-uid="StreamExtended.Network.CopyStream.Read(System.Byte[],System.Int32,System.Int32)">Read(Byte[], Int32, Int32)</h4>
475527
<div class="markdown level1 summary"></div>

docs/api/StreamExtended.Network.CustomBufferedStream.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,61 @@ <h5 class="exceptions">Exceptions</h5>
953953
</table>
954954

955955

956+
<a id="StreamExtended_Network_CustomBufferedStream_PeekBytesAsync_" data-uid="StreamExtended.Network.CustomBufferedStream.PeekBytesAsync*"></a>
957+
<h4 id="StreamExtended_Network_CustomBufferedStream_PeekBytesAsync_System_Int32_System_Int32_System_Threading_CancellationToken_" data-uid="StreamExtended.Network.CustomBufferedStream.PeekBytesAsync(System.Int32,System.Int32,System.Threading.CancellationToken)">PeekBytesAsync(Int32, Int32, CancellationToken)</h4>
958+
<div class="markdown level1 summary"><p>Peeks bytes asynchronous.</p>
959+
</div>
960+
<div class="markdown level1 conceptual"></div>
961+
<h5 class="decalaration">Declaration</h5>
962+
<div class="codewrapper">
963+
<pre><code class="lang-csharp hljs">public Task&lt;byte[]&gt; PeekBytesAsync(int index, int size, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
964+
</div>
965+
<h5 class="parameters">Parameters</h5>
966+
<table class="table table-bordered table-striped table-condensed">
967+
<thead>
968+
<tr>
969+
<th>Type</th>
970+
<th>Name</th>
971+
<th>Description</th>
972+
</tr>
973+
</thead>
974+
<tbody>
975+
<tr>
976+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
977+
<td><span class="parametername">index</span></td>
978+
<td><p>The index.</p>
979+
</td>
980+
</tr>
981+
<tr>
982+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
983+
<td><span class="parametername">size</span></td>
984+
<td></td>
985+
</tr>
986+
<tr>
987+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
988+
<td><span class="parametername">cancellationToken</span></td>
989+
<td><p>The cancellation token.</p>
990+
</td>
991+
</tr>
992+
</tbody>
993+
</table>
994+
<h5 class="returns">Returns</h5>
995+
<table class="table table-bordered table-striped table-condensed">
996+
<thead>
997+
<tr>
998+
<th>Type</th>
999+
<th>Description</th>
1000+
</tr>
1001+
</thead>
1002+
<tbody>
1003+
<tr>
1004+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task-1">Task</a>&lt;<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.byte">Byte</a>[]&gt;</td>
1005+
<td></td>
1006+
</tr>
1007+
</tbody>
1008+
</table>
1009+
1010+
9561011
<a id="StreamExtended_Network_CustomBufferedStream_Read_" data-uid="StreamExtended.Network.CustomBufferedStream.Read*"></a>
9571012
<h4 id="StreamExtended_Network_CustomBufferedStream_Read_System_Byte___System_Int32_System_Int32_" data-uid="StreamExtended.Network.CustomBufferedStream.Read(System.Byte[],System.Int32,System.Int32)">Read(Byte[], Int32, Int32)</h4>
9581013
<div class="markdown level1 summary"><p>When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</p>

docs/api/StreamExtended.Network.ICustomStreamReader.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,61 @@ <h5 class="exceptions">Exceptions</h5>
326326
</table>
327327

328328

329+
<a id="StreamExtended_Network_ICustomStreamReader_PeekBytesAsync_" data-uid="StreamExtended.Network.ICustomStreamReader.PeekBytesAsync*"></a>
330+
<h4 id="StreamExtended_Network_ICustomStreamReader_PeekBytesAsync_System_Int32_System_Int32_System_Threading_CancellationToken_" data-uid="StreamExtended.Network.ICustomStreamReader.PeekBytesAsync(System.Int32,System.Int32,System.Threading.CancellationToken)">PeekBytesAsync(Int32, Int32, CancellationToken)</h4>
331+
<div class="markdown level1 summary"><p>Peeks bytes asynchronous.</p>
332+
</div>
333+
<div class="markdown level1 conceptual"></div>
334+
<h5 class="decalaration">Declaration</h5>
335+
<div class="codewrapper">
336+
<pre><code class="lang-csharp hljs">Task&lt;byte[]&gt; PeekBytesAsync(int index, int size, CancellationToken cancellationToken = default(CancellationToken))</code></pre>
337+
</div>
338+
<h5 class="parameters">Parameters</h5>
339+
<table class="table table-bordered table-striped table-condensed">
340+
<thead>
341+
<tr>
342+
<th>Type</th>
343+
<th>Name</th>
344+
<th>Description</th>
345+
</tr>
346+
</thead>
347+
<tbody>
348+
<tr>
349+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
350+
<td><span class="parametername">index</span></td>
351+
<td><p>The index.</p>
352+
</td>
353+
</tr>
354+
<tr>
355+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
356+
<td><span class="parametername">size</span></td>
357+
<td></td>
358+
</tr>
359+
<tr>
360+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.cancellationtoken">CancellationToken</a></td>
361+
<td><span class="parametername">cancellationToken</span></td>
362+
<td><p>The cancellation token.</p>
363+
</td>
364+
</tr>
365+
</tbody>
366+
</table>
367+
<h5 class="returns">Returns</h5>
368+
<table class="table table-bordered table-striped table-condensed">
369+
<thead>
370+
<tr>
371+
<th>Type</th>
372+
<th>Description</th>
373+
</tr>
374+
</thead>
375+
<tbody>
376+
<tr>
377+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task-1">Task</a>&lt;<a class="xref" href="https://docs.microsoft.com/dotnet/api/system.byte">Byte</a>[]&gt;</td>
378+
<td></td>
379+
</tr>
380+
</tbody>
381+
</table>
382+
383+
329384
<a id="StreamExtended_Network_ICustomStreamReader_Read_" data-uid="StreamExtended.Network.ICustomStreamReader.Read*"></a>
330385
<h4 id="StreamExtended_Network_ICustomStreamReader_Read_System_Byte___System_Int32_System_Int32_" data-uid="StreamExtended.Network.ICustomStreamReader.Read(System.Byte[],System.Int32,System.Int32)">Read(Byte[], Int32, Int32)</h4>
331386
<div class="markdown level1 summary"><p>When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</p>

0 commit comments

Comments
 (0)