SDownload.Framework.CrashHandler.AddExtra C# (CSharp) Method

AddExtra() public static method

Adds debug information to be sent with any crashes that occur in the future
public static AddExtra ( String key, String value ) : void
key String Identifier for the debug information
value String The debug information to send
return void
        public static void AddExtra(String key, String value)
        {
            if (!String.IsNullOrEmpty(value))
                BugSenseHandler.Instance.AddCrashExtraData(new CrashExtraData { Key = key, Value = value });
        }