We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e941965 commit 8a0276dCopy full SHA for 8a0276d
.gitignore
@@ -260,3 +260,6 @@ paket-files/
260
# Python Tools for Visual Studio (PTVS)
261
__pycache__/
262
*.pyc
263
+
264
+# Mac Only settings file
265
+.DS_Store
ElectronNET.API/Entities/WebPreferences.cs
@@ -1,4 +1,4 @@
1
-using System.ComponentModel;
+using System.ComponentModel;
2
3
namespace ElectronNET.API.Entities
4
{
@@ -206,5 +206,11 @@ public class WebPreferences
206
/// </value>
207
[DefaultValue(false)]
208
public bool WebviewTag { get; set; } = false;
209
210
+ /// <summary>
211
+ /// Whether to enable the remote module. Defaults to false.
212
+ /// </summary>
213
+ [DefaultValue(false)]
214
+ public bool EnableRemoteModule { get; set; } = false;
215
}
216
0 commit comments