This repository was archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathIChromelyConfiguration.cs
85 lines (69 loc) · 2.31 KB
/
IChromelyConfiguration.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright © 2017 Chromely Projects. All rights reserved.
// Use of this source code is governed by MIT license that can be found in the LICENSE file.
namespace Chromely.Core.Configuration;
/// <summary>
/// Chromely main configuation class.
/// </summary>
public interface IChromelyConfiguration
{
/// <summary>
/// Gets or sets the name of the application.
/// </summary>
string? AppName { get; set; }
/// <summary>
/// Gets or sets the start URL.
/// </summary>
string StartUrl { get; set; }
/// <summary>
/// Gets or sets the application executable location.
/// </summary>
string AppExeLocation { get; set; }
/// <summary>
/// Gets or sets the Chromely version.
/// </summary>
string? ChromelyVersion { get; set; }
/// <summary>
/// Gets or sets the platform.
/// </summary>
ChromelyPlatform Platform { get; set; }
/// <summary>
/// Gets or sets a value indicating whether debugging is enabled or not.
/// </summary>
bool DebuggingMode { get; set; }
/// <summary>
/// Gets or sets the dev tools URL.
/// </summary>
string? DevToolsUrl { get; set; }
/// <summary>
/// Gets or sets the command line arguments.
/// </summary>
Dictionary<string, string>? CommandLineArgs { get; set; }
/// <summary>
/// Gets or sets the command line options.
/// </summary>
List<string>? CommandLineOptions { get; set; }
/// <summary>
/// Gets or sets the custom settings.
/// </summary>
Dictionary<string, string>? CustomSettings { get; set; }
/// <summary>
/// Gets or sets the extension data.
/// </summary>
Dictionary<string, object>? ExtensionData { get; set; }
/// <summary>
/// Gets or sets the JavaScript scripts executor.
/// </summary>
IChromelyJavaScriptExecutor? JavaScriptExecutor { get; set; }
/// <summary>
/// Gets or sets the URL schemes.
/// </summary>
List<UrlScheme> UrlSchemes { get; set; }
/// <summary>
/// Gets or sets <see cref="Configuration.CefDownloadOptions"/> for CEF download options.
/// </summary>
CefDownloadOptions CefDownloadOptions { get; set; }
/// <summary>
/// Gets or sets <see cref="IWindowOptions"/> for window options.
/// </summary>
IWindowOptions WindowOptions { get; set; }
}