/// <summary> /// GET /syncpoint/link.svc/{TOKEN} /// returns Link entity that matches the token /// </summary> public static void ExecuteLinkTokenGet() { if (_currentSharedLink == null) { Console.WriteLine("You need to call ExecuteLinksPost() first"); return; } LinkService.GetSharedLink(_currentSharedLink.Token); }