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

SetUserIdentifier() public static method

Sets the User ID that accompanies any crashes
public static SetUserIdentifier ( ) : void
return void
        public static void SetUserIdentifier()
        {
            var enabled = Settings.IncludeSupportEmail && !String.IsNullOrWhiteSpace(Settings.SupportEmail);
            BugSenseHandler.Instance.UserIdentifier = enabled ? Settings.SupportEmail : "";
        }