Retrieves http proxy online options.
[Visual Basic .NET] |
---|
Public Function GetOnlineOptions( _ ByRef UseProxy As Boolean, _ ByRef ServerName As String, _ ByRef PortNum As Integer, _ ByRef UserName As String _ ) As Boolean |
[C#] |
---|
public bool GetOnlineOptions( ref bool UseProxy, ref string ServerName, ref int PortNum, ref string UserName ); |
[Managed C++] |
---|
public: bool GetOnlineOptions( bool ^ UseProxy, String __gc ^ ^ ServerName, int ^ PortNum, String __gc ^ ^ UserName ); |
[Java] |
---|
public bool getOnlineOptions( bool UseProxy, String ServerName, int PortNum, String UserName ); |
[Unmanaged C++] |
---|
public: HRESULT GetOnlineOptions( VARIANT_BOOL * UseProxy, BSTR * ServerName, long * PortNum, BSTR * UserName, VARIANT_BOOL * pVal ); |
- UseProxy
- If True is returned, the proxy information was used.
- ServerName
- Server name or IP address of the HTTP server.
- PortNum
- Port number used for proxy.
- UserName
- User name for proxy server.
Returns True if the values were retrieved successfully; otherwise returns False.
[Visual Basic .NET] | ||
---|---|---|
|