-
Notifications
You must be signed in to change notification settings - Fork 1
Protocol Activation
Mark Ivan Basto edited this page Aug 18, 2020
·
1 revision
You can launch Jump Point through protocol activation. This can be done by any of the following ways:
- Windows Run Dialog
- File Explorer Address Bar
- Browser Address Bar
Windows.System.Launcher.LaunchUriAsync
Opens a new Jump Point window
Opens the specified Jump Point path in a new window.
Acceptedpath
values:
dashboard, settings, favorites, workspaces, drives, applinks, settinglinks
Opens the Jump Point item with the specified path in a new window
Parameter | Valid Values | Required | Description |
---|---|---|---|
item | drive, folder, workspace | Yes | The item type to view |
path | --string-- | Yes | The path to the item that you want to view |
Opens the Jump Point Properties window for the specified type and path
Parameter | Valid Values | Required | Description |
---|---|---|---|
type | drive, folder, file, workspace, settinglink, applink | Yes | The type of the item that will be opened in the Jump Point Properties window |
path | --string-- | Yes | The path to the item that you want to view |
Opens the Jump Point Properties window for the file that the fileToken points to
Parameter | Valid Values | Required | Description |
---|---|---|---|
fileToken | --string-- | Yes | A token identifying the file that will be opened in the new Jump Point properties window. Retrieved from SharedStorageAccessManager.AddFile |
Opens the Jump Point Properties window for the contents the file that the seedsToken points to
Parameter | Valid Values | Required | Description |
---|---|---|---|
seedsToken | --string-- | Yes | A token identifying the file that contains the serialized JSON collection of Seeds that will be opened in the new Jump Point properties window. Retrieved from SharedStorageAccessManager.AddFile |
Type: Array of Objects
Object Properties: type (string), path (string)
See Table in Section 4 to see the valid values for type and path
[
{"type":"drive","path":"C:"},
{"type":"folder","path":"C:\\Windows"},
{"type":"file","path":"C:\\file.txt"},
{"type":"workspace","path":"Music"},
{"type":"settinglink","path":"home"},
{"type":"applink","path":"jumppoint://dashboard"}
]