mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-08 21:26:52 +00:00
* Cleanup of unnecessary usings * Used language keywords instead of BCL types : Object --> object * Fixed some spelling issues
30 lines
840 B
C#
30 lines
840 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class LoadURLOptions
|
|
{
|
|
/// <summary>
|
|
/// A HTTP Referrer url.
|
|
/// </summary>
|
|
public string HttpReferrer { get; set; }
|
|
|
|
/// <summary>
|
|
/// A user agent originating the request.
|
|
/// </summary>
|
|
public string UserAgent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
public string BaseURLForDataURL { get; set; }
|
|
|
|
/// <summary>
|
|
/// Extra headers for the request.
|
|
/// </summary>
|
|
public string ExtraHeaders { get; set; }
|
|
}
|
|
} |