Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public HttpMessageInvoker(HttpMessageHandler handler)
/// Initializes an instance of a <see cref="HttpMessageInvoker"/> class with a specific <see cref="HttpMessageHandler"/>.
/// </summary>
/// <param name="handler">The <see cref="HttpMessageHandler"/> responsible for processing the HTTP response messages.</param>
/// <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>
/// <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>
/// <exception cref="ArgumentNullException"></exception>
public HttpMessageInvoker(
HttpMessageHandler handler,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public SslProtocols SslProtocols
/// times out. The default value is 300,000 milliseconds (5 minutes).
/// </value>
/// <remarks>This property is used to control the timeout when calling
/// <see cref="Stream.Read"/> and <see cref="Stream.Write"/>.
/// <see cref="Stream.Read(byte[], int, int)"/> and <see cref="Stream.Write"/>.
/// This property affects <itemref>Stream</itemref>s returned from
/// GetResponse().<see cref="WebResponse.GetResponseStream"/>()
/// and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ private Chunk GetChunk()

public override int Read(SpanByte buffer)
{
throw new NotImplementedException();
throw new NotSupportedException();
}

private enum ChunkState
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public override void Write(byte[] buffer, int offset, int size)

public override int Read(SpanByte buffer)
{
throw new NotImplementedException();
throw new NotSupportedException();
}
}
}
Expand Down