SIL.FieldWorks.FieldWorks.SafelyReportException C# (CSharp) Метод

SafelyReportException() приватный Метод

private SafelyReportException ( Exception error, IFwMainWnd parent, bool isLethal ) : bool
error System.Exception
parent IFwMainWnd
isLethal bool
Результат bool
		private static bool SafelyReportException(Exception error, IFwMainWnd parent, bool isLethal)
		{
			using (new IgnoreAppMessageProccessing(s_teApp))
			using (new IgnoreAppMessageProccessing(s_flexApp))
			{
				// Be very, very careful about changing stuff here. Code here MUST not throw exceptions,
				// even when the application is in a crashed state. For example, error reporting failed
				// before I added the static registry keys, because getting App.SettingsKey failed somehow.
				RegistryKey appKey = FwRegistryHelper.FieldWorksRegistryKey;
				if (parent != null && parent.App != null && parent.App == s_teApp && s_teAppKey != null)
					appKey = s_teAppKey;
				else if (parent != null && parent.App != null && parent.App == s_flexApp && s_flexAppKey != null)
					appKey = s_flexAppKey;
				return ErrorReporter.ReportException(error, appKey, SupportEmail,
					parent as Form, isLethal);
			}
		}
FieldWorks