HttpProgressStage HttpProgressStage HttpProgressStage HttpProgressStage Enum

Definition

Indicates the step in the progress for an HTTP connection.

public : enum class HttpProgressStagepublic enum HttpProgressStagePublic Enum HttpProgressStage// You can use this enum in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Fields

ConnectingToServer ConnectingToServer ConnectingToServer ConnectingToServer

The socket used for the HTTP connection is connecting to the server.

DetectingProxy DetectingProxy DetectingProxy DetectingProxy

The system starts to detect a proxy.

This step may not occur depending on the system configuration.

NegotiatingSsl NegotiatingSsl NegotiatingSsl NegotiatingSsl

The HTTP connection to the server is negotiating SSL.

If the SSL negotiation fails, then this will be the last step that occurs on the HTTP connection.

None None None None

A default value that should not be encountered.

ReceivingContent ReceivingContent ReceivingContent ReceivingContent

The HTTP client is receiving content from the server.

ReceivingHeaders ReceivingHeaders ReceivingHeaders ReceivingHeaders

The HTTP client is receiving headers from the server.

ResolvingName ResolvingName ResolvingName ResolvingName

The system is resolving the hostname for the HTTP connection.

This step may not occur if the hostname doesn't need to be resolved.

SendingContent SendingContent SendingContent SendingContent

HTTP content is being sent to the server.

This step may not occur if there is no content to send.

SendingHeaders SendingHeaders SendingHeaders SendingHeaders

HTTP headers are being sent to the server.

WaitingForResponse WaitingForResponse WaitingForResponse WaitingForResponse

The HTTP client is waiting for a response from the server.

Remarks

This enumeration value is a member of the HttpProgress structure returned by many of the asynchronous methods in the Windows.Web.Http namespace. The enumeration values indicates steps in the progress for an HTTP connection.

Some steps are not taken depending on the system configuration and other factors.