Table of Contents

Enum HttpCompletionOption

Namespace
System.Net.Http
Assembly
System.Net.Http.dll

Indicates if HttpClient operations should be considered completed either as soon as a response is available, or after reading the entire response message including the content.

public enum HttpCompletionOption

Fields

ResponseContentRead = 0

The operation should complete after reading the entire response including the content.

ResponseHeadersRead = 1

The operation should complete as soon as a response is available and headers are read. The content is not read yet.