2018-09-10 02:41:13 +02:00
|
|
|
// Copyright © 2014 The CefSharp Authors. All rights reserved.
|
2015-04-14 13:29:47 +10:00
|
|
|
//
|
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
namespace CefSharp.Example.Proxy
|
|
|
|
|
{
|
2015-04-14 13:31:06 +10:00
|
|
|
public struct InternetProxyInfo
|
|
|
|
|
{
|
|
|
|
|
public InternetOpenType AccessType;
|
|
|
|
|
public string ProxyAddress;
|
|
|
|
|
public string ProxyBypass;
|
|
|
|
|
}
|
2015-04-14 13:29:47 +10:00
|
|
|
}
|