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

TryFindLinkHandler() приватный статический Метод

Attempts to find another FieldWorks process that can handle the specified link.
private static TryFindLinkHandler ( FwAppArgs link ) : bool
link FwAppArgs The link.
Результат 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