iControl.ManagementEM.get_device_proxy_configuration C# (CSharp) Method

get_device_proxy_configuration() private method

private get_device_proxy_configuration ( string &emSslProxyHost, short &emSslProxyPort, string &deviceSslProxyHost, short &deviceSslProxyPort, bool &useEmSslProxyForDevice, bool &deviceProxyEnabled ) : void
emSslProxyHost string
emSslProxyPort short
deviceSslProxyHost string
deviceSslProxyPort short
useEmSslProxyForDevice bool
deviceProxyEnabled bool
return void
        public void get_device_proxy_configuration(
		out string emSslProxyHost,
		out short emSslProxyPort,
		out string deviceSslProxyHost,
		out short deviceSslProxyPort,
		out bool useEmSslProxyForDevice,
		out bool deviceProxyEnabled
	)
        {
            object [] results = this.Invoke("get_device_proxy_configuration", new object [] {
            });
            emSslProxyHost = ((string)(results[0]));
            emSslProxyPort = ((short)(results[1]));
            deviceSslProxyHost = ((string)(results[2]));
            deviceSslProxyPort = ((short)(results[3]));
            useEmSslProxyForDevice = ((bool)(results[4]));
            deviceProxyEnabled = ((bool)(results[5]));
        }