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

TryFindLinkHandler() private static méthode

Attempts to find another FieldWorks process that can handle the specified link.
private static TryFindLinkHandler ( FwAppArgs link ) : bool
link FwAppArgs The link.
Résultat bool
		private static bool TryFindLinkHandler(FwAppArgs link)
		{
			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.HandleLinkRequest(link));
			});
		}
FieldWorks