The following action can be hit using the url "/api/test?types=TypeA&types=TypeB" and the "types" array is populated as expected:
```
public string[] Get([FromUri]string[] types)
{
return types;
}
```
HelpPage UI's URI currently doesn't show the 'types' information in Uri. _Attached_ snapshot.
```
public string[] Get([FromUri]string[] types)
{
return types;
}
```
HelpPage UI's URI currently doesn't show the 'types' information in Uri. _Attached_ snapshot.