SIL.FieldWorks.FDO.Infrastructure.Impl.XMLBackendProvider.ReportProblem C# (CSharp) Метод

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

private ReportProblem ( string message, string tempPath ) : void
message string
tempPath string
Результат void
		private void ReportProblem(string message, string tempPath)
		{
			if (File.Exists(tempPath))
			{
				try
				{
					File.Delete(tempPath);
				}
				catch (IOException)
				{
					// Can't even clean up. Sigh.
				}
			}
			m_ui.DisplayMessage(MessageType.Error, message, Strings.ksProblemWritingFile, null);
		}