SDownload.Framework.CrashHandler.SetUserIdentifier C# (CSharp) Метод

SetUserIdentifier() публичный статический Метод

Sets the User ID that accompanies any crashes
public static SetUserIdentifier ( ) : void
Результат void
        public static void SetUserIdentifier()
        {
            var enabled = Settings.IncludeSupportEmail && !String.IsNullOrWhiteSpace(Settings.SupportEmail);
            BugSenseHandler.Instance.UserIdentifier = enabled ? Settings.SupportEmail : "";
        }