diff --git a/programming/maui/api-reference/parsed-result.md b/programming/maui/api-reference/parsed-result.md index 1b00223..0af9e47 100644 --- a/programming/maui/api-reference/parsed-result.md +++ b/programming/maui/api-reference/parsed-result.md @@ -23,7 +23,7 @@ class ParsedResult : CapturedResultBase | Property | Type | Description | |----------|------|-------------| -| [`Items`](#items) | *List* | The parsed result item at the specified index. | +| [`Items`](#items) | *ParsedResultItem[]* | The parsed result item at the specified index. | The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_maui_api }}core/captured-result-base.html): @@ -39,7 +39,7 @@ The following properties are inherited from [`CapturedResultBase`]({{ site.dcv_m The parsed result item at the specified index. ```csharp -List Items { get; } +ParsedResultItem[]? Items { get; } ``` **See Also**