Condividi tramite


struttura WINHTTP_PROXY_RESULT_ENTRY (winhttp.h)

La struttura WINHTTP_PROXY_RESULT_ENTRY contiene una voce di risultato da una chiamata a WinHttpGetProxyResult.

Sintassi

typedef struct _WINHTTP_PROXY_RESULT_ENTRY {
  BOOL            fProxy;
  BOOL            fBypass;
  INTERNET_SCHEME ProxyScheme;
  PWSTR           pwszProxy;
  INTERNET_PORT   ProxyPort;
} WINHTTP_PROXY_RESULT_ENTRY;

Members

fProxy

Valore BOOL che indica se un risultato proviene da un proxy. È impostato su TRUE se il risultato contiene un proxy o FALSE se il risultato non contiene un proxy.

fBypass

Valore BOOL che indica se il risultato ignora un proxy (in una intranet). È impostato su TRUE se il risultato ignora un proxy o FALSE se tutto il traffico è diretto. Questo parametro si applica solo se fProxy è FALSE.

ProxyScheme

Valore INTERNET_SCHEME che specifica lo schema del proxy.

pwszProxy

Stringa contenente il nome host del proxy.

ProxyPort

Valore INTERNET_PORT che specifica la porta del proxy.

Commenti

Questa struttura viene archiviata in una matrice all'interno di una struttura WINHTTP_PROXY_RESULT .

Requisiti

   
Client minimo supportato Windows 8 [solo app desktop]
Server minimo supportato Windows Server 2012 [solo app desktop]
Intestazione winhttp.h

Vedi anche

WINHTTP_PROXY_RESULT

WinHttpFreeProxyResult

WinHttpGetProxyResult