File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -277,13 +277,13 @@ namespace CefSharp
277
277
278
278
// / <summary>
279
279
// / Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version
280
- // / will be used. If UserAgent is specified this value will be ignored. Also configurable using the "product-version " command-
280
+ // / will be used. If UserAgent is specified this value will be ignored. Also configurable using the "user-agent-product " command-
281
281
// / line switch.
282
282
// / </summary>
283
- property String^ ProductVersion
283
+ property String^ UserAgentProduct
284
284
{
285
- String^ get () { return StringUtils::ToClr (_cefSettings->product_version ); }
286
- void set (String^ value) { StringUtils::AssignNativeFromClr (_cefSettings->product_version , value); }
285
+ String^ get () { return StringUtils::ToClr (_cefSettings->user_agent_product ); }
286
+ void set (String^ value) { StringUtils::AssignNativeFromClr (_cefSettings->user_agent_product , value); }
287
287
}
288
288
289
289
// / <summary>
Original file line number Diff line number Diff line change @@ -244,13 +244,13 @@ public bool PackLoadingDisabled
244
244
245
245
/// <summary>
246
246
/// Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version
247
- /// will be used. If UserAgent is specified this value will be ignored. Also configurable using the "product-version " command-
247
+ /// will be used. If UserAgent is specified this value will be ignored. Also configurable using the "user-agent-product " command-
248
248
/// line switch.
249
249
/// </summary>
250
- public string ProductVersion
250
+ public string UserAgentProduct
251
251
{
252
- get { return settings . ProductVersion ; }
253
- set { settings . ProductVersion = value ; }
252
+ get { return settings . UserAgentProduct ; }
253
+ set { settings . UserAgentProduct = value ; }
254
254
}
255
255
256
256
/// <summary>
You can’t perform that action at this time.
0 commit comments