Contents Index Topic Contents | ||
Previous Topic: INTERNET_CERTIFICATE_INFO Next Topic: INTERNET_ONLINE_OFFLINE_INFO |
INTERNET_CONNECTED_INFO
typedef struct { DWORD dwConnectedState; DWORD dwFlags } INTERNET_CONNECTED_INFO, * LPINTERNET_CONNECTED_INFO;Contains the information to set the global online/offline state.
- dwConnectedState
- DWORD value that contains the state information. Can be one of the following values:
INTERNET_STATE_CONNECTED Connected to network. Replaces INTERNET_STATE_ONLINE. INTERNET_STATE_DISCONNECTED Disconnected from network. Replaces INTERNET_STATE_OFFLINE. INTERNET_STATE_DISCONNECTED_BY_USER Disconnected by user request. Replaces INTERNET_STATE_OFFLINE_USER. INTERNET_STATE_IDLE No network requests are being made by Win32 Internet functions. INTERNET_STATE_BUSY Network requests are being made by WinInet. - dwFlags
- DWORD value that controls the transition between states. Can be ISO_FORCE_DISCONNECTED, which puts Win32 Internet functions into offline mode. All outstanding requests will be aborted with a canceled error.
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.