File tree Expand file tree Collapse file tree 3 files changed +0
-21
lines changed
CefSharp.Core.Runtime.RefAssembly Expand file tree Collapse file tree 3 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ public sealed partial class CefSettingsBase : System.IDisposable
9696 {
9797 public CefSettingsBase ( ) { }
9898 public string AcceptLanguageList { get { throw null ; } set { } }
99- public string ApplicationClientIdForFileScanning { get { throw null ; } set { } }
10099 public uint BackgroundColor { get { throw null ; } set { } }
101100 public string BrowserSubprocessPath { get { throw null ; } set { } }
102101 public string CachePath { get { throw null ; } set { } }
Original file line number Diff line number Diff line change @@ -391,16 +391,6 @@ namespace CefSharp
391391 void set (bool value) { _cefSettings->cookieable_schemes_exclude_defaults = value; }
392392 }
393393
394- // / <summary>
395- // / GUID string used for identifying the application. This is passed to the system AV function for scanning downloaded files. By
396- // / default, the GUID will be an empty string and the file will be treated as an untrusted file when the GUID is empty.
397- // / </summary>
398- property String^ ApplicationClientIdForFileScanning
399- {
400- String^ get () { return StringUtils::ToClr (_cefSettings->application_client_id_for_file_scanning ); }
401- void set (String^ value) { StringUtils::AssignNativeFromClr (_cefSettings->application_client_id_for_file_scanning , value); }
402- }
403-
404394 // / <summary>
405395 // / Registers a custom scheme using the provided settings.
406396 // / </summary>
Original file line number Diff line number Diff line change @@ -401,16 +401,6 @@ public bool CookieableSchemesExcludeDefaults
401401 set { settings . CookieableSchemesExcludeDefaults = value ; }
402402 }
403403
404- /// <summary>
405- /// GUID string used for identifying the application. This is passed to the system AV function for scanning downloaded files. By
406- /// default, the GUID will be an empty string and the file will be treated as an untrusted file when the GUID is empty.
407- /// </summary>
408- public string ApplicationClientIdForFileScanning
409- {
410- get { return settings . ApplicationClientIdForFileScanning ; }
411- set { settings . ApplicationClientIdForFileScanning = value ; }
412- }
413-
414404 /// <summary>
415405 /// Registers a custom scheme using the provided settings.
416406 /// </summary>
You can’t perform that action at this time.
0 commit comments