SDownload.Framework.CrashHandler.SetUserIdentifier C# (CSharp) Méthode

SetUserIdentifier() public static méthode

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