Given the following example: ``` C# public class FooViewComponent<T> { public string Invoke(T value) { return value.ToString(); } } ``` Trying to run this like so: ``` @{ Write(await Component.InvokeAsync<FooViewComponent<string>>(new { value = "Hello World" })); } ``` Results in the following: 
Given the following example:
Trying to run this like so:
Results in the following:
