|
45 | 45 | <Parameter Name="useSynchronizationContext" Type="System.Boolean" />
|
46 | 46 | </Parameters>
|
47 | 47 | <Docs>
|
48 |
| - <param name="pool">To be added.</param> |
49 |
| - <param name="readerScheduler">To be added.</param> |
50 |
| - <param name="writerScheduler">To be added.</param> |
51 |
| - <param name="pauseWriterThreshold">To be added.</param> |
52 |
| - <param name="resumeWriterThreshold">To be added.</param> |
53 |
| - <param name="minimumSegmentSize">To be added.</param> |
54 |
| - <param name="useSynchronizationContext">To be added.</param> |
55 |
| - <summary>Creates a new instance of <see cref="T:System.IO.Pipelines.PipeOptions" />.</summary> |
| 48 | + <param name="pool">The pool of memory blocks to be used for buffer management.</param> |
| 49 | + <param name="readerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> to be used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</param> |
| 50 | + <param name="writerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</param> |
| 51 | + <param name="pauseWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> before <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A negative value prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</param> |
| 52 | + <param name="resumeWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</param> |
| 53 | + <param name="minimumSegmentSize">The minimum size of the segment requested from <paramref name="pool" />.</param> |
| 54 | + <param name="useSynchronizationContext"><see langword="true" /> if asynchronous continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; <see langword="false" /> otherwise. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</param> |
| 55 | + <summary>Initializes a new instance of the <see cref="T:System.IO.Pipelines.PipeOptions" /> class with the specified parameters.</summary> |
56 | 56 | <remarks>To be added.</remarks>
|
57 | 57 | </Docs>
|
58 | 58 | </Member>
|
|
75 | 75 | </ReturnValue>
|
76 | 76 | <Docs>
|
77 | 77 | <summary>Gets the default instance of <see cref="T:System.IO.Pipelines.PipeOptions" />.</summary>
|
78 |
| - <value>To be added.</value> |
| 78 | + <value>A <see cref="T:System.IO.Pipelines.PipeOptions" /> object initialized with default parameters.</value> |
79 | 79 | <remarks>To be added.</remarks>
|
80 | 80 | </Docs>
|
81 | 81 | </Member>
|
|
97 | 97 | <ReturnType>System.Int32</ReturnType>
|
98 | 98 | </ReturnValue>
|
99 | 99 | <Docs>
|
100 |
| - <summary>Gets the minimum size of the segment requested from <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</summary> |
101 |
| - <value>To be added.</value> |
| 100 | + <summary>Gets the minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</summary> |
| 101 | + <value>The minimum size of the segment requested from the <see cref="P:System.IO.Pipelines.PipeOptions.Pool" />.</value> |
102 | 102 | <remarks>To be added.</remarks>
|
103 | 103 | </Docs>
|
104 | 104 | </Member>
|
|
120 | 120 | <ReturnType>System.Int64</ReturnType>
|
121 | 121 | </ReturnValue>
|
122 | 122 | <Docs>
|
123 |
| - <summary>Gets the amount of bytes in <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking.</summary> |
124 |
| - <value>To be added.</value> |
| 123 | + <summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking.</summary> |
| 124 | + <value>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking.</value> |
125 | 125 | <remarks>To be added.</remarks>
|
126 | 126 | </Docs>
|
127 | 127 | </Member>
|
|
143 | 143 | <ReturnType>System.Buffers.MemoryPool<System.Byte></ReturnType>
|
144 | 144 | </ReturnValue>
|
145 | 145 | <Docs>
|
146 |
| - <summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> instances used for buffer management.</summary> |
147 |
| - <value>To be added.</value> |
| 146 | + <summary>Gets the <see cref="T:System.Buffers.MemoryPool`1" /> object used for buffer management.</summary> |
| 147 | + <value>A pool of memory blocks used for buffer management.</value> |
148 | 148 | <remarks>To be added.</remarks>
|
149 | 149 | </Docs>
|
150 | 150 | </Member>
|
|
166 | 166 | <ReturnType>System.IO.Pipelines.PipeScheduler</ReturnType>
|
167 | 167 | </ReturnValue>
|
168 | 168 | <Docs>
|
169 |
| - <summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks.</summary> |
170 |
| - <value>To be added.</value> |
| 169 | + <summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</summary> |
| 170 | + <value>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> that is used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</value> |
171 | 171 | <remarks>To be added.</remarks>
|
172 | 172 | </Docs>
|
173 | 173 | </Member>
|
|
189 | 189 | <ReturnType>System.Int64</ReturnType>
|
190 | 190 | </ReturnValue>
|
191 | 191 | <Docs>
|
192 |
| - <summary>Gets amount of bytes in <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</summary> |
193 |
| - <value>To be added.</value> |
| 192 | + <summary>Gets the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</summary> |
| 193 | + <value>The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</value> |
194 | 194 | <remarks>To be added.</remarks>
|
195 | 195 | </Docs>
|
196 | 196 | </Member>
|
|
212 | 212 | <ReturnType>System.Boolean</ReturnType>
|
213 | 213 | </ReturnValue>
|
214 | 214 | <Docs>
|
215 |
| - <summary>Gets a value that determines if asynchronous callbacks should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</summary> |
216 |
| - <value>To be added.</value> |
| 215 | + <summary>Gets a value that determines if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on. This takes precedence over the schedulers specified in <see cref="P:System.IO.Pipelines.PipeOptions.ReaderScheduler" /> and <see cref="P:System.IO.Pipelines.PipeOptions.WriterScheduler" />.</summary> |
| 216 | + <value><see langword="true" /> if asynchronous callbacks and continuations should be executed on the <see cref="T:System.Threading.SynchronizationContext" /> they were captured on; otherwise, <see langword="false" />.</value> |
217 | 217 | <remarks>To be added.</remarks>
|
218 | 218 | </Docs>
|
219 | 219 | </Member>
|
|
235 | 235 | <ReturnType>System.IO.Pipelines.PipeScheduler</ReturnType>
|
236 | 236 | </ReturnValue>
|
237 | 237 | <Docs>
|
238 |
| - <summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks.</summary> |
239 |
| - <value>To be added.</value> |
| 238 | + <summary>Gets the <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</summary> |
| 239 | + <value>A <see cref="T:System.IO.Pipelines.PipeScheduler" /> object used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</value> |
240 | 240 | <remarks>To be added.</remarks>
|
241 | 241 | </Docs>
|
242 | 242 | </Member>
|
|
0 commit comments