iControl.ManagementEM.Endget_device_proxy_configuration C# (CSharp) Method

Endget_device_proxy_configuration() public method

public Endget_device_proxy_configuration ( System asyncResult, string &emSslProxyHost, short &emSslProxyPort, string &deviceSslProxyHost, short &deviceSslProxyPort, bool &useEmSslProxyForDevice, bool &deviceProxyEnabled ) : void
asyncResult System
emSslProxyHost string
emSslProxyPort short
deviceSslProxyHost string
deviceSslProxyPort short
useEmSslProxyForDevice bool
deviceProxyEnabled bool
return void
        public void Endget_device_proxy_configuration(System.IAsyncResult asyncResult,
 out string emSslProxyHost,
 out short emSslProxyPort,
 out string deviceSslProxyHost,
 out short deviceSslProxyPort,
 out bool useEmSslProxyForDevice,
 out bool deviceProxyEnabled)
        {
            object [] results = this.EndInvoke(asyncResult);
            emSslProxyHost = ((string)(results[0]));
            emSslProxyPort = ((short)(results[1]));
            deviceSslProxyHost = ((string)(results[2]));
            deviceSslProxyPort = ((short)(results[3]));
            useEmSslProxyForDevice = ((bool)(results[4]));
            deviceProxyEnabled = ((bool)(results[5]));
        }