Skip to content

Commit d48fe0e

Browse files
authored
Miscelaneous improvements (#371)
1 parent 89b7584 commit d48fe0e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public HttpMessageInvoker(HttpMessageHandler handler)
2828
/// Initializes an instance of a <see cref="HttpMessageInvoker"/> class with a specific <see cref="HttpMessageHandler"/>.
2929
/// </summary>
3030
/// <param name="handler">The <see cref="HttpMessageHandler"/> responsible for processing the HTTP response messages.</param>
31-
/// <param name="disposeHandler"><see langword="true"/> if the inner handler should be disposed of by <see cref="Dispose"/>, <see langword="false"/> if you intend to reuse the inner handler.</param>
31+
/// <param name="disposeHandler"><see langword="true"/> if the inner handler should be disposed of by <see cref="HttpMessageInvoker.Dispose"/>, <see langword="false"/> if you intend to reuse the inner handler.</param>
3232
/// <exception cref="ArgumentNullException"></exception>
3333
public HttpMessageInvoker(
3434
HttpMessageHandler handler,

nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public SslProtocols SslProtocols
404404
/// times out. The default value is 300,000 milliseconds (5 minutes).
405405
/// </value>
406406
/// <remarks>This property is used to control the timeout when calling
407-
/// <see cref="Stream.Read"/> and <see cref="Stream.Write"/>.
407+
/// <see cref="Stream.Read(byte[], int, int)"/> and <see cref="Stream.Write"/>.
408408
/// This property affects <itemref>Stream</itemref>s returned from
409409
/// GetResponse().<see cref="WebResponse.GetResponseStream"/>()
410410
/// and

nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ private Chunk GetChunk()
748748

749749
public override int Read(SpanByte buffer)
750750
{
751-
throw new NotImplementedException();
751+
throw new NotSupportedException();
752752
}
753753

754754
private enum ChunkState

nanoFramework.System.Net.Http/Http/System.Net._OutputNetworkStreamWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public override void Write(byte[] buffer, int offset, int size)
290290

291291
public override int Read(SpanByte buffer)
292292
{
293-
throw new NotImplementedException();
293+
throw new NotSupportedException();
294294
}
295295
}
296296
}

0 commit comments

Comments
 (0)