21
21
using System ;
22
22
using System . Globalization ;
23
23
24
+ #nullable enable
25
+
24
26
namespace OpenQA . Selenium . Edge
25
27
{
26
28
/// <summary>
@@ -60,27 +62,21 @@ public EdgeOptions() : base()
60
62
/// <summary>
61
63
/// Gets the vendor prefix to apply to Chromium-specific capability names.
62
64
/// </summary>
63
- protected override string VendorPrefix
64
- {
65
- get { return "ms" ; }
66
- }
65
+ protected override string VendorPrefix => "ms" ;
67
66
68
67
/// <summary>
69
68
/// Gets the name of the capability used to store Chromium options in
70
69
/// an <see cref="ICapabilities"/> object.
71
70
/// </summary>
72
- public override string CapabilityName
73
- {
74
- get { return string . Format ( CultureInfo . InvariantCulture , "{0}:{1}" , this . VendorPrefix , EdgeOptionsCapabilityName ) ; }
75
- }
71
+ public override string CapabilityName => string . Format ( CultureInfo . InvariantCulture , "{0}:{1}" , this . VendorPrefix , EdgeOptionsCapabilityName ) ;
76
72
77
73
/// <summary>
78
74
/// Gets or sets whether to create a WebView session used for launching an Edge (Chromium) WebView-based app on desktop.
79
75
/// </summary>
80
76
public bool UseWebView
81
77
{
82
- get { return this . BrowserName == WebViewBrowserNameValue ; }
83
- set { this . BrowserName = value ? WebViewBrowserNameValue : DefaultBrowserNameValue ; }
78
+ get => this . BrowserName == WebViewBrowserNameValue ;
79
+ set => this . BrowserName = value ? WebViewBrowserNameValue : DefaultBrowserNameValue ;
84
80
}
85
81
86
82
/// <summary>
@@ -97,7 +93,7 @@ public bool UseWebView
97
93
/// where <paramref name="optionName"/> has already been added will overwrite the
98
94
/// existing value with the new value in <paramref name="optionValue"/>.
99
95
/// Calling this method adds capabilities to the Edge-specific options object passed to
100
- /// webdriver executable (property name 'ms:edgeOptions').</remarks>
96
+ /// WebDriver executable (property name 'ms:edgeOptions').</remarks>
101
97
public void AddAdditionalEdgeOption ( string optionName , object optionValue )
102
98
{
103
99
this . AddAdditionalChromiumOption ( optionName , optionValue ) ;
0 commit comments