Skip to content

Commit b783fc5

Browse files
committed
Checking in descriptions for UriEntity and related APIs
1 parent ddf4308 commit b783fc5

5 files changed

Lines changed: 103 additions & 0 deletions

windows.ai.actions/actionentityfactory_createtableentity_1260648862.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ The number of columns in the table. The system determines the number of rows by
2626

2727
## -returns
2828

29+
A new **TableActionEntity**.
30+
2931
## -remarks
3032

3133
## -see-also
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.ActionEntityFactory.CreateUriEntity(Windows.Foundation.Uri)
3+
-api-type: winrt method
4+
---
5+
6+
# Windows.AI.Actions.ActionEntityFactory.CreateUriEntity(Windows.Foundation.Uri)
7+
8+
<!--
9+
public Windows.AI.Actions.UriActionEntity CreateUriEntity (System.Uri Uri);
10+
-->
11+
12+
13+
## -description
14+
15+
Creates a new instance of [UriActionEntity](uriactionentity.md).
16+
17+
## -parameters
18+
19+
### -param Uri
20+
21+
The URI associated with the **UriActionEntity**.
22+
23+
## -returns
24+
25+
A new **UriActionEntity**.
26+
27+
## -remarks
28+
29+
## -see-also
30+
31+
## -examples
32+
33+

windows.ai.actions/actionentitykind.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,22 @@ The entity is a [RemoteFileActionEntity](remotefileactionentity.md).
4646

4747
### -field Table: 7
4848

49+
The entity is a [TableActionEntity](tableactionentity.md).
50+
4951
### -field Contact: 8
5052

53+
### -field Uri: 9
54+
55+
The entity is a [UriActionEntity](uriactionentity.md).
56+
57+
### -field Array: 10
58+
59+
### -field Appointment: 11
60+
61+
### -field Date: 12
62+
63+
### -field CustomText: 13
64+
5165
## -remarks
5266

5367
This enumeration is used by the [ActionEntity.Kind](actionentity_kind.md) property.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
-api-id: T:Windows.AI.Actions.UriActionEntity
3+
-api-type: winrt class
4+
---
5+
6+
# Windows.AI.Actions.UriActionEntity
7+
8+
<!--
9+
public sealed class UriActionEntity : Windows.AI.Actions.ActionEntity
10+
-->
11+
12+
13+
## -description
14+
15+
A subtype of [ActionEntity](actionentity.md) that represents a URI.
16+
17+
## -remarks
18+
19+
Create an instance of this class by calling [ActionEntityFactory.CreateUriEntity](actionentityfactory_createurientity_492063993.md).
20+
21+
Actions can use a *where* clause in their input combination declaration to specify that they are able to operate on one or more [Uri.Scheme](/dotnet/api/system.uri.scheme) values. For more information, see [Action definition JSON schema for App Actions on Windows](/windows/ai/app-actions/actions-json).
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.UriActionEntity.Uri
3+
-api-type: winrt property
4+
---
5+
6+
# Windows.AI.Actions.UriActionEntity.Uri
7+
8+
<!--
9+
public System.Uri Uri { get; }
10+
-->
11+
12+
13+
## -description
14+
15+
Gets the URI associated with the **UriActionEntity**.
16+
17+
## -property-value
18+
19+
The URI associated with the **URIActionEntity**.
20+
21+
## -remarks
22+
23+
## -see-also
24+
25+
## -examples
26+
27+

0 commit comments

Comments
 (0)