namespace ElectronNET.API.Entities
{
///
///
///
public class BrowserViewConstructorOptions
{
///
/// See BrowserWindow.
///
public WebPreferences WebPreferences { get; set; }
///
/// A proxy to set on creation in the format host:port.
/// The proxy can be alternatively set using the BrowserView.WebContents.SetProxyAsync function.
///
public string Proxy { get; set; }
///
/// The credentials of the Proxy in the format username:password.
/// These will only be used if the Proxy field is also set.
///
public string ProxyCredentials { get; set; }
}
}