GetLaunchUrl() public method

public GetLaunchUrl ( ) : string
return string
 public RecentJumpTask(RecentCollection collection) {
     Id = collection.Id;
     Title = collection.Name;
     Description = "Launch: " + collection.Name;
     CustomCategory = "Recent";
     ApplicationPath = collection.GetLaunchUrl();
     IconResourcePath = Common.Paths.EntryLocation.ToString();
 }
 public RecentMenuItem(RecentCollection collection) {
     Id = collection.Id;
     Name = collection.Name;
     Action = () => Process.Start(collection.GetLaunchUrl());
 }