SIL.FieldWorks.FieldWorks.CreateApp C# (CSharp) Méthode

CreateApp() private méthode

private CreateApp ( SIL.FieldWorks.Common.FwUtils.FwAppArgs appArgs ) : bool
appArgs SIL.FieldWorks.Common.FwUtils.FwAppArgs
Résultat bool
		private static bool CreateApp(FwAppArgs appArgs)
		{
			FwApp app = GetOrCreateApplication(appArgs);
			if (app == null)
				return false; // We can't do much without an application to start
			Debug.Assert(!app.HasBeenFullyInitialized);

			Logger.WriteEvent("Created application: " + app.GetType().Name);
			return true;
		}
FieldWorks