namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
public class BrowserViewConstructorOptions
{
///
/// Gets or sets the web preferences for the view (see WebPreferences).
///
public WebPreferences WebPreferences { get; set; }
///
/// Gets or sets a proxy to use on creation in the format host:port.
/// The proxy can be alternatively set using the BrowserView.WebContents.SetProxyAsync function.
///
/// This is custom shortcut. Not part of the Electron API.
public string Proxy { get; set; }
///
/// Gets or sets the credentials of the proxy in the format username:password.
/// These will only be used if the Proxy field is also set.
///
/// This is custom shortcut. Not part of the Electron API.
public string ProxyCredentials { get; set; }
}
}