Update Blazor test plan to reflect `public` requirement on parameters. (#3245)

This commit is contained in:
N. Taylor Mullen 2019-08-22 15:32:57 -07:00 коммит произвёл Akshita Agarwal
Родитель 74f6eae46a
Коммит df3ebd74fe
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -151,7 +151,7 @@ To setup a test project to verify on you can do:
* Open `Counter.razor`, in the `@functions { ... }` block add:
```C#
[Parameter]
private int IncrementAmount { get; set; }
public int IncrementAmount { get; set; }
```
- Save `Counter.razor` then wait 5 seconds.
- Go back to `Index.razor` and type `<Counter |`, hit ctrl space, search for `IncrementAmount` attribute, commit the completion. Ensure that it auto-completes to `<Counter IncrementAmount="|"`