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 : "";
        }