namespace ElectronNET.API.Entities
{
///
///
///
public class LoadURLOptions
{
///
/// A HTTP Referrer url.
///
public string HttpReferrer { get; set; }
///
/// A user agent originating the request.
///
public string UserAgent { get; set; }
///
/// Base url (with trailing path separator) for files to be loaded by the data url.
/// This is needed only if the specified url is a data url and needs to load other
/// files.
///
public string BaseURLForDataURL { get; set; }
///
/// Extra headers for the request.
///
public string ExtraHeaders { get; set; }
///
/// PostData Object for the request.
/// Can be , or
///
public IPostData[] PostData { get; set; }
}
}