Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
public -> internal in SendState
  • Loading branch information
jamesqo committed Apr 20, 2016
commit 2e4788b3cc4f37f8edfd9827ccfbff5c76e79453
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ private static void HandleCanceledOperations(CancellationToken cancellationToken
// a closure, while simultaneously avoiding a tuple allocation.
private sealed class SendState : TaskCompletionSource<HttpResponseMessage>
{
public readonly MessageProcessingHandler _handler;
public readonly CancellationToken _token;
internal readonly MessageProcessingHandler _handler;
internal readonly CancellationToken _token;

public SendState(MessageProcessingHandler handler, CancellationToken token)
{
Expand Down