File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -359,6 +359,15 @@ namespace CefSharp
359359 void set (bool value) { _cefSettings->cookieable_schemes_exclude_defaults = value; }
360360 }
361361
362+ // / <summary>
363+ // / The Chrome policy ID. This value is used to configure managed policies.
364+ // / </summary>
365+ property String^ ChromePolicyId
366+ {
367+ String^ get () { return StringUtils::ToClr (_cefSettings->chrome_policy_id ); }
368+ void set (String^ value) { StringUtils::AssignNativeFromClr (_cefSettings->chrome_policy_id , value); }
369+ }
370+
362371 // / <summary>
363372 // / Registers a custom scheme using the provided settings.
364373 // / </summary>
Original file line number Diff line number Diff line change @@ -368,6 +368,15 @@ public bool CookieableSchemesExcludeDefaults
368368 set { settings . CookieableSchemesExcludeDefaults = value ; }
369369 }
370370
371+ /// <summary>
372+ /// The Chrome policy ID. This value is used to configure chrome enterprise policies.
373+ /// </summary>
374+ public string ChromePolicyId
375+ {
376+ get { return settings . ChromePolicyId ; }
377+ set { settings . ChromePolicyId = value ; }
378+ }
379+
371380 /// <summary>
372381 /// Registers a custom scheme using the provided settings.
373382 /// </summary>
You can’t perform that action at this time.
0 commit comments