Skip to content

Commit c759a06

Browse files
committed
repo sync private>public
1 parent 6c078dc commit c759a06

624 files changed

Lines changed: 7539 additions & 1711 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
-api-id: T:Windows.AI.Actions.Hosting.ActionCatalog
3+
-api-type: winrt class
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog
7+
8+
<!--
9+
public sealed class ActionCatalog : System.IDisposable
10+
-->
11+
12+
13+
## -description
14+
15+
Provides APIs for querying for app actions that are registered with the system.
16+
17+
## -remarks
18+
19+
Get an instance of this class by accessing the [ActionCatalog](../windows.ai.actions/actionruntime_actioncatalog.md) property of the [ActionRuntime](../windows.ai.actions/actionruntime.md) class.
20+
21+
## -see-also
22+
23+
## -examples
24+
25+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
-api-id: E:Windows.AI.Actions.Hosting.ActionCatalog.Changed
3+
-api-type: winrt event
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog.Changed
7+
8+
<!--
9+
public event Windows.Foundation.TypedEventHandler<Windows.AI.Actions.Hosting.ActionCatalog,object> Changed;
10+
-->
11+
12+
13+
## -description
14+
15+
Raised when the set of app actions registered with the action catalog changes.
16+
17+
## -remarks
18+
19+
## -see-also
20+
21+
## -examples
22+
23+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
-api-id: M:Windows.AI.Actions.Hosting.ActionCatalog.Close
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog.Close
7+
8+
<!--
9+
// This member is not implemented in C#
10+
-->
11+
12+
13+
## -description
14+
15+
Closes and releases any resources used by this **ActionCatalog**.
16+
17+
## -remarks
18+
19+
## -see-also
20+
21+
## -examples
22+
23+
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
-api-id: M:Windows.AI.Actions.Hosting.ActionCatalog.GetActionsForInputs(Windows.AI.Actions.ActionEntity[])
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog.GetActionsForInputs(Windows.AI.Actions.ActionEntity[])
7+
8+
<!--
9+
public Windows.AI.Actions.Hosting.ActionInstance[] GetActionsForInputs (Windows.AI.Actions.ActionEntity[] inputEntities);
10+
-->
11+
12+
13+
## -description
14+
15+
Gets an array of action instances for all actions registered with the system that accept the specified list of input entities.
16+
17+
## -parameters
18+
19+
### -param inputEntities
20+
21+
A list of [ActionEntity](../windows.ai.actions/actionentity.md) objects specifying the input entities for which actions are retrieved.
22+
23+
## -returns
24+
25+
An array of [ActionInstance](actioninstance.md) objects that provide the details and the invocation context of an app action as well as the ability to invoke the action.
26+
27+
## -remarks
28+
29+
## -see-also
30+
31+
## -examples
32+
33+
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
-api-id: M:Windows.AI.Actions.Hosting.ActionCatalog.GetActionsForInputs(Windows.AI.Actions.ActionEntity[],Windows.UI.WindowId)
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog.GetActionsForInputs(Windows.AI.Actions.ActionEntity[],Windows.UI.WindowId)
7+
8+
<!--
9+
public Windows.AI.Actions.Hosting.ActionInstance[] GetActionsForInputs (Windows.AI.Actions.ActionEntity[] inputEntities, Windows.UI.WindowId invokerWindowId);
10+
-->
11+
12+
13+
## -description
14+
15+
Gets an array of action instances for all actions registered with the system that accept the specified list of input entities. This overload also accepts the [WindowId](/uwp/api/windows.ui.windowid) associated with the invoker of the action.
16+
17+
## -parameters
18+
19+
### -param inputEntities
20+
21+
A list of [ActionEntity](../windows.ai.actions/actionentity.md) objects specifying the input entities for which actions are retrieved.
22+
23+
### -param invokerWindowId
24+
25+
A **WindowId** object specifying the window that invokes the app action.
26+
27+
## -returns
28+
29+
An array of [ActionInstance](actioninstance.md) objects that provide the details and the invocation context of an app action as well as the ability to invoke the action.
30+
31+
## -remarks
32+
33+
## -see-also
34+
35+
## -examples
36+
37+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
-api-id: M:Windows.AI.Actions.Hosting.ActionCatalog.GetAllActions
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionCatalog.GetAllActions
7+
8+
<!--
9+
public Windows.AI.Actions.Hosting.ActionDefinition[] GetAllActions ();
10+
-->
11+
12+
13+
## -description
14+
15+
Gets an array of action definitions for all actions registered with the system.
16+
17+
## -returns
18+
19+
An [ActionDefinition](actiondefinition.md) object that provides the details of an app action.
20+
21+
## -remarks
22+
23+
## -see-also
24+
25+
## -examples
26+
27+
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
-api-id: T:Windows.AI.Actions.Hosting.ActionDefinition
3+
-api-type: winrt class
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionDefinition
7+
8+
<!--
9+
public sealed class ActionDefinition : System.IDisposable
10+
-->
11+
12+
13+
## -description
14+
15+
Provides details about the app action definition.
16+
17+
## -remarks
18+
19+
Actions are defined using JSON syntax that specifies information about the action such as a unique identifier, a description, and the set of inputs that it accepts. For information about the JSON syntax for defining an action, see [Action definition JSON schema for App Actions on Windows](/windows/ai/app-actions/actions-json).
20+
21+
## -see-also
22+
23+
## -examples
24+
25+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
-api-id: M:Windows.AI.Actions.Hosting.ActionDefinition.Close
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionDefinition.Close
7+
8+
<!--
9+
// This member is not implemented in C#
10+
-->
11+
12+
13+
## -description
14+
15+
Closes and releases any resources used by this **ActionDefinition**.
16+
17+
## -remarks
18+
19+
## -see-also
20+
21+
## -examples
22+
23+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
-api-id: P:Windows.AI.Actions.Hosting.ActionDefinition.Description
3+
-api-type: winrt property
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionDefinition.Description
7+
8+
<!--
9+
public string Description { get; }
10+
-->
11+
12+
13+
## -description
14+
15+
Gets the description of the app action.
16+
17+
## -property-value
18+
19+
The description of the app action.
20+
21+
## -remarks
22+
23+
## -see-also
24+
25+
## -examples
26+
27+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
-api-id: P:Windows.AI.Actions.Hosting.ActionDefinition.DisplaysUI
3+
-api-type: winrt property
4+
---
5+
6+
# Windows.AI.Actions.Hosting.ActionDefinition.DisplaysUI
7+
8+
<!--
9+
public bool DisplaysUI { get; }
10+
-->
11+
12+
13+
## -description
14+
15+
Gets a value indicating whether the app action displays UI.
16+
17+
## -property-value
18+
19+
True is the app action displays UI; otherwise, false.
20+
21+
## -remarks
22+
23+
## -see-also
24+
25+
## -examples
26+
27+

0 commit comments

Comments
 (0)