# WildcardDataPointCollection Class

> WildcardDataPointCollection read-only collection of WildcardDataPoint facades in the V1 navigator, with filters that return only basic fields, tables, or field groups.

## Definition

* Namespace: `UiPath.DocumentProcessing.Contracts.Extensions.Navigator.V1`
* Assembly: `UiPath.DocumentProcessing.Contracts`
* Inherits: `System.Collections.ObjectModel.ReadOnlyCollection<WildcardDataPoint>`

## Description

`WildcardDataPointCollection` is a read-only collection of [WildcardDataPoint](wildcarddatapoint-class.md) facades. It is the return type of `GetFields(...)` on [ComponentCollectionFacade](componentcollectionfacade-class.md) and exposes filtered views grouped by field type.

Because it inherits from `ReadOnlyCollection<WildcardDataPoint>`, standard collection members such as `Count` and the indexer are also available.

## Members

### Constructors

| Constructor | Description |
|---|---|
| `WildcardDataPointCollection(IList<WildcardDataPoint> list)` | Initializes a new collection from a list of facades. |
| `WildcardDataPointCollection(IList<ResultsDataPoint> list)` | Initializes a new collection by wrapping each [ResultsDataPoint](results-data-point-class.md) in a [WildcardDataPoint](wildcarddatapoint-class.md). |

### Properties

| Property | Type | Description |
|---|---|---|
| `BasicFields` | [BasicDataPoint](basicdatapoint-class.md)`[]` | The items that are neither tables nor field groups, as basic field facades. Read-only. |
| `Tables` | [TableDataPoint](tabledatapoint-class.md)`[]` | The items of type table, as table facades. Read-only. |
| `FieldGroups` | [FieldGroupDataPoint](fieldgroupdatapoint-class.md)`[]` | The items of type field group, as field group facades. Read-only. |
