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

TryFindRestoreHandler() private static méthode

Attempts to find another FieldWorks process that can handle a restore for the specified restore project settings.
private static TryFindRestoreHandler ( FwRestoreProjectSettings settings ) : bool
settings FwRestoreProjectSettings The restore project settings.
Résultat bool
		private static bool TryFindRestoreHandler(FwRestoreProjectSettings settings)
		{
			return RunOnRemoteClients(kFwRemoteRequest, requestor =>
			{
				// ENHANCE (TimS): We might want to do similar logic to TryFindExistingProcess to
				// wait for projects that are starting up.
				return requestor.HandleRestoreProjectRequest(settings);
			});
		}
		#endregion
FieldWorks