You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<summary>Gets a <seecref="T:System.Security.Authentication.SslProtocols" /> value that indicates the security protocol used to authenticate this connection.</summary>
Copy file name to clipboardExpand all lines: xml/System.Net.Quic/QuicStream.xml
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,7 @@ Corresponds to [STOP_SENDING](https://www.rfc-editor.org/rfc/rfc9000.html#frame-
119
119
<summary>Begins an asynchronous read operation. (Consider using <seecref="M:System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32)" /> instead.)</summary>
120
120
<returns>An <seecref="T:System.IAsyncResult" /> that represents the asynchronous read, which could still be pending.</returns>
121
121
<remarks>To be added.</remarks>
122
+
<inheritdoc />
122
123
</Docs>
123
124
</Member>
124
125
<MemberMemberName="BeginWrite">
@@ -169,6 +170,7 @@ Corresponds to [STOP_SENDING](https://www.rfc-editor.org/rfc/rfc9000.html#frame-
169
170
<summary>Begins an asynchronous write operation. (Consider using <seecref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> instead.)</summary>
170
171
<returns>An <seelangword="IAsyncResult" /> that represents the asynchronous write, which could still be pending.</returns>
171
172
<remarks>To be added.</remarks>
173
+
<inheritdoc />
172
174
</Docs>
173
175
</Member>
174
176
<MemberMemberName="CanRead">
@@ -220,6 +222,7 @@ Corresponds to [STOP_SENDING](https://www.rfc-editor.org/rfc/rfc9000.html#frame-
220
222
<value>
221
223
<seelangword="true" /> if the stream supports seeking; otherwise, <seelangword="false" />.</value>
222
224
<remarks>To be added.</remarks>
225
+
<inheritdoc />
223
226
</Docs>
224
227
</Member>
225
228
<MemberMemberName="CanTimeout">
@@ -245,6 +248,7 @@ Corresponds to [STOP_SENDING](https://www.rfc-editor.org/rfc/rfc9000.html#frame-
245
248
<value>
246
249
<seelangword="true" /> if the current stream can time out; otherwise, <seelangword="false" />.</value>
247
250
<remarks>To be added.</remarks>
251
+
<inheritdoc />
248
252
</Docs>
249
253
</Member>
250
254
<MemberMemberName="CanWrite">
@@ -270,6 +274,7 @@ Corresponds to [STOP_SENDING](https://www.rfc-editor.org/rfc/rfc9000.html#frame-
270
274
<value>
271
275
<seelangword="true" /> if the stream supports writing; otherwise, <seelangword="false" />.</value>
272
276
<remarks>To be added.</remarks>
277
+
<inheritdoc />
273
278
</Docs>
274
279
</Member>
275
280
<MemberMemberName="CompleteWrites">
@@ -386,6 +391,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
386
391
<returns>The number of bytes read from the stream, between zero (0) and the number of bytes requested.</returns>
387
392
<remarks>
388
393
<c>ReadAsync</c> returns zero (0) only if zero bytes were requested or if no more bytes will be available because it's at the end of the stream; otherwise, read operations do not complete until at least one byte is available. If zero bytes are requested, read operations may complete immediately or may not complete until at least one byte is available (but without consuming any data).</remarks>
394
+
<inheritdoc />
389
395
</Docs>
390
396
</Member>
391
397
<MemberMemberName="EndWrite">
@@ -413,6 +419,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
413
419
<paramname="asyncResult">A reference to the outstanding asynchronous I/O request.</param>
414
420
<summary>Ends an asynchronous write operation. (Consider using <seecref="M:System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32)" /> instead.)</summary>
415
421
<remarks>To be added.</remarks>
422
+
<inheritdoc />
416
423
</Docs>
417
424
</Member>
418
425
<MemberMemberName="Flush">
@@ -466,6 +473,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
466
473
<returns>A task that represents the asynchronous flush operation.</returns>
467
474
<remarks>To be added.</remarks>
468
475
<exceptioncref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
476
+
<inheritdoc />
469
477
</Docs>
470
478
</Member>
471
479
<MemberMemberName="Id">
@@ -516,6 +524,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
516
524
<value>A long value representing the length of the stream in bytes.</value>
517
525
<remarks>To be added.</remarks>
518
526
<exceptioncref="T:System.NotSupportedException">In all cases.</exception>
527
+
<inheritdoc />
519
528
</Docs>
520
529
</Member>
521
530
<MemberMemberName="Position">
@@ -541,6 +550,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
541
550
<value>The current position within the stream.</value>
542
551
<remarks>To be added.</remarks>
543
552
<exceptioncref="T:System.NotSupportedException">In all cases.</exception>
553
+
<inheritdoc />
544
554
</Docs>
545
555
</Member>
546
556
<MemberMemberName="Read">
@@ -633,6 +643,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
633
643
<returns>A task that represents the asynchronous read operation.</returns>
634
644
<remarks>The value of its <seecref="P:System.Threading.Tasks.ValueTask`1.Result" /> property contains the total number of bytes read into the buffer. The result value can be less than the length of the buffer if that many bytes are not currently available, or it can be 0 (zero) if the length of the buffer is 0 or if the end of the stream has been reached.</remarks>
635
645
<exceptioncref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
646
+
<inheritdoc />
636
647
</Docs>
637
648
</Member>
638
649
<MemberMemberName="ReadAsync">
@@ -667,6 +678,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
667
678
<returns>A task that represents the asynchronous read operation.</returns>
668
679
<remarks>The value of the <seecref="P:System.Threading.Tasks.ValueTask`1.Result" /> property contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if <paramrefname="count" /> is 0 or if the end of the stream has been reached.</remarks>
669
680
<exceptioncref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
681
+
<inheritdoc />
670
682
</Docs>
671
683
</Member>
672
684
<MemberMemberName="ReadByte">
@@ -692,6 +704,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
692
704
<summary>Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.</summary>
693
705
<returns>The unsigned byte cast to an <seecref="T:System.Int32" />, or -1 if at the end of the stream.</returns>
694
706
<remarks>To be added.</remarks>
707
+
<inheritdoc />
695
708
</Docs>
696
709
</Member>
697
710
<MemberMemberName="ReadsClosed">
@@ -772,6 +785,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
772
785
<returns>The new position within the current stream.</returns>
773
786
<remarks>To be added.</remarks>
774
787
<exceptioncref="T:System.NotSupportedException">In all cases.</exception>
788
+
<inheritdoc />
775
789
</Docs>
776
790
</Member>
777
791
<MemberMemberName="SetLength">
@@ -800,6 +814,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
800
814
<summary>Sets the length of the stream. This method is not currently supported and always throws a <seecref="T:System.NotSupportedException" />.</summary>
801
815
<remarks>To be added.</remarks>
802
816
<exceptioncref="T:System.NotSupportedException">In all cases.</exception>
817
+
<inheritdoc />
803
818
</Docs>
804
819
</Member>
805
820
<MemberMemberName="ToString">
@@ -940,6 +955,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
940
955
<returns>A task that represents the asynchronous write operation.</returns>
941
956
<remarks>To be added.</remarks>
942
957
<exceptioncref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
958
+
<inheritdoc />
943
959
</Docs>
944
960
</Member>
945
961
<MemberMemberName="WriteAsync">
@@ -973,6 +989,7 @@ Equivalent to using <xref:System.Net.Quic.QuicStream.WriteAsync(System.ReadOnlyM
973
989
<returns>A task that represents the asynchronous write operation.</returns>
974
990
<remarks>To be added.</remarks>
975
991
<exceptioncref="T:System.OperationCanceledException">The cancellation token was canceled. This exception is stored into the returned task.</exception>
Copy file name to clipboardExpand all lines: xml/System.Net.Quic/QuicStreamType.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
<BaseTypeName>System.Enum</BaseTypeName>
17
17
</Base>
18
18
<Docs>
19
-
<summary>Represents the type of a stream.</summary>
19
+
<summary>Represents the type of a stream as defined in <seehref="https://www.rfc-editor.org/rfc/rfc9000.html#name-stream-types-and-identifier">RFC9000</see>.</summary>
Copy file name to clipboardExpand all lines: xml/System.Net.Security/SslClientAuthenticationOptions.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@
142
142
<ReturnType>System.Boolean</ReturnType>
143
143
</ReturnValue>
144
144
<Docs>
145
-
<summary>To be added.</summary>
145
+
<summary>Gets or sets a value that indicates whether the the rsa_pkcs1_* family of TLS signature algorithms is enabled for use in the TLS handshake.</summary>
146
146
<value>To be added.</value>
147
147
<remarks>To be added.</remarks>
148
148
</Docs>
@@ -176,7 +176,7 @@
176
176
<ReturnType>System.Boolean</ReturnType>
177
177
</ReturnValue>
178
178
<Docs>
179
-
<summary>To be added.</summary>
179
+
<summary>Gets or sets a value that indicates whether the the rsa_pss_* family of TLS signature algorithms is enabled for use in the TLS handshake.</summary>
Copy file name to clipboardExpand all lines: xml/System.Net.Security/SslServerAuthenticationOptions.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@
140
140
<ReturnType>System.Boolean</ReturnType>
141
141
</ReturnValue>
142
142
<Docs>
143
-
<summary>To be added.</summary>
143
+
<summary>Gets or sets a value that indicates whether the the rsa_pkcs1_* family of TLS signature algorithms is enabled for use in the TLS handshake.</summary>
144
144
<value>To be added.</value>
145
145
<remarks>To be added.</remarks>
146
146
</Docs>
@@ -174,7 +174,7 @@
174
174
<ReturnType>System.Boolean</ReturnType>
175
175
</ReturnValue>
176
176
<Docs>
177
-
<summary>To be added.</summary>
177
+
<summary>Gets or sets a value that indicates whether the the rsa_pss_* family of TLS signature algorithms is enabled for use in the TLS handshake.</summary>
0 commit comments