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 1d88a66 commit 26f415fCopy full SHA for 26f415f
CefSharp.Core/Cef.cs
@@ -572,9 +572,11 @@ public static bool CrashReportingEnabled
572
/// <summary>
573
/// Sets or clears a specific key-value pair from the crash metadata.
574
/// </summary>
575
- public static void SetCrashKeyValue(string c, string value)
+ /// <param name="key">key</param>
576
+ /// <param name="value">value</param>
577
+ public static void SetCrashKeyValue(string key, string value)
578
{
- Core.Cef.SetCrashKeyValue(value, value);
579
+ Core.Cef.SetCrashKeyValue(key, value);
580
}
581
582
0 commit comments