In Blazor cshtml, auto-reference Microsoft.AspNetCore.Blazor and .Components (#751)
* In Blazor cshtml files, auto-import Microsoft.AspNetCore.Blazor and Microsoft.AspNetCore.Blazor.Components. Fixes #749 * Remove redundant @using directives from tests * Update assertion in test * Update all affected baselines
This commit is contained in:
parent
2192e00da5
commit
37788f3c9d
|
|
@ -1,6 +1,4 @@
|
||||||
@using System.Net.Http
|
@using System.Net.Http
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Components
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Layouts
|
@using Microsoft.AspNetCore.Blazor.Layouts
|
||||||
@using Microsoft.AspNetCore.Blazor.Routing
|
@using Microsoft.AspNetCore.Blazor.Routing
|
||||||
@using StandaloneApp
|
@using StandaloneApp
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Shared;
|
||||||
using Microsoft.AspNetCore.Razor.Language;
|
using Microsoft.AspNetCore.Razor.Language;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Blazor.Razor
|
namespace Microsoft.AspNetCore.Blazor.Razor
|
||||||
|
|
@ -17,12 +18,14 @@ namespace Microsoft.AspNetCore.Blazor.Razor
|
||||||
private static readonly char[] PathSeparators = new char[]{ '/', '\\' };
|
private static readonly char[] PathSeparators = new char[]{ '/', '\\' };
|
||||||
|
|
||||||
// Using explicit newlines here to avoid fooling our baseline tests
|
// Using explicit newlines here to avoid fooling our baseline tests
|
||||||
private const string DefaultUsingImportContent =
|
private readonly static string DefaultUsingImportContent =
|
||||||
"\r\n" +
|
"\r\n" +
|
||||||
"@using System\r\n" +
|
"@using System\r\n" +
|
||||||
"@using System.Collections.Generic\r\n" +
|
"@using System.Collections.Generic\r\n" +
|
||||||
"@using System.Linq\r\n" +
|
"@using System.Linq\r\n" +
|
||||||
"@using System.Threading.Tasks\r\n";
|
"@using System.Threading.Tasks\r\n" +
|
||||||
|
"@using " + BlazorApi.RenderFragment.Namespace + "\r\n" + // Microsoft.AspNetCore.Blazor
|
||||||
|
"@using " + BlazorApi.BlazorComponent.Namespace + "\r\n"; // Microsoft.AspNetCore.Blazor.Components
|
||||||
|
|
||||||
public RazorProjectEngine ProjectEngine { get; set; }
|
public RazorProjectEngine ProjectEngine { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@using System.Net.Http
|
@using System.Net.Http
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Components
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Layouts
|
@using Microsoft.AspNetCore.Blazor.Layouts
|
||||||
@using Microsoft.AspNetCore.Blazor.Routing
|
@using Microsoft.AspNetCore.Blazor.Routing
|
||||||
@using BlazorHosted_CSharp.Client
|
@using BlazorHosted_CSharp.Client
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
@using System.Net.Http
|
@using System.Net.Http
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Components
|
|
||||||
@using Microsoft.AspNetCore.Blazor.Layouts
|
@using Microsoft.AspNetCore.Blazor.Layouts
|
||||||
@using Microsoft.AspNetCore.Blazor.Routing
|
@using Microsoft.AspNetCore.Blazor.Routing
|
||||||
@using BlazorStandalone_CSharp
|
@using BlazorStandalone_CSharp
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,8 @@ namespace Microsoft.AspNetCore.Blazor.Shared
|
||||||
|
|
||||||
public static class BlazorComponent
|
public static class BlazorComponent
|
||||||
{
|
{
|
||||||
public static readonly string FullTypeName = "Microsoft.AspNetCore.Blazor.Components.BlazorComponent";
|
public static readonly string Namespace = "Microsoft.AspNetCore.Blazor.Components";
|
||||||
|
public static readonly string FullTypeName = Namespace + ".BlazorComponent";
|
||||||
|
|
||||||
public static readonly string BuildRenderTree = nameof(BuildRenderTree);
|
public static readonly string BuildRenderTree = nameof(BuildRenderTree);
|
||||||
}
|
}
|
||||||
|
|
@ -40,7 +41,8 @@ namespace Microsoft.AspNetCore.Blazor.Shared
|
||||||
|
|
||||||
public static class RenderFragment
|
public static class RenderFragment
|
||||||
{
|
{
|
||||||
public static readonly string FullTypeName = "Microsoft.AspNetCore.Blazor.RenderFragment";
|
public static readonly string Namespace = "Microsoft.AspNetCore.Blazor";
|
||||||
|
public static readonly string FullTypeName = Namespace + ".RenderFragment";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class RenderTreeBuilder
|
public static class RenderTreeBuilder
|
||||||
|
|
|
||||||
|
|
@ -213,7 +213,6 @@ namespace Test
|
||||||
|
|
||||||
var component = CompileToComponent($@"
|
var component = CompileToComponent($@"
|
||||||
@addTagHelper *, TestAssembly
|
@addTagHelper *, TestAssembly
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<MyComponent OnClick=""{expression}""/>
|
<MyComponent OnClick=""{expression}""/>
|
||||||
|
|
||||||
@functions {{
|
@functions {{
|
||||||
|
|
@ -261,7 +260,6 @@ namespace Test
|
||||||
|
|
||||||
var component = CompileToComponent(@"
|
var component = CompileToComponent(@"
|
||||||
@addTagHelper *, TestAssembly
|
@addTagHelper *, TestAssembly
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<MyComponent OnClick=""@Increment""/>
|
<MyComponent OnClick=""@Increment""/>
|
||||||
|
|
||||||
@functions {
|
@functions {
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@addTagHelper *, TestAssembly
|
@addTagHelper *, TestAssembly
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<MyComponent OnClick=""@Increment""/>
|
<MyComponent OnClick=""@Increment""/>
|
||||||
|
|
||||||
@functions {
|
@functions {
|
||||||
|
|
@ -232,7 +231,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@(x => { })"" />");
|
<input onclick=""@(x => { })"" />");
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
|
|
@ -248,7 +246,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
void OnClick(UIMouseEventArgs e) {
|
void OnClick(UIMouseEventArgs e) {
|
||||||
|
|
@ -269,7 +266,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
Task OnClick()
|
Task OnClick()
|
||||||
|
|
@ -292,7 +288,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
|
|
@ -315,7 +310,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""async (e) => await Task.Delay(10)"" />
|
<input onclick=""async (e) => await Task.Delay(10)"" />
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
@ -333,7 +327,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""async (e) => await Task.Delay(10)"" />
|
<input onclick=""async (e) => await Task.Delay(10)"" />
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -494,7 +494,6 @@ namespace Microsoft.AspNetCore.Blazor.Build.Test
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
var component = CompileToComponent(@"
|
var component = CompileToComponent(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<button onclick=""@OnClick"" />
|
<button onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
public void OnClick(UIMouseEventArgs e) { Clicked = true; }
|
public void OnClick(UIMouseEventArgs e) { Clicked = true; }
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@addTagHelper *, TestAssembly
|
@addTagHelper *, TestAssembly
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<MyComponent OnClick=""@Increment""/>
|
<MyComponent OnClick=""@Increment""/>
|
||||||
|
|
||||||
@functions {
|
@functions {
|
||||||
|
|
@ -285,7 +284,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@(() => { })"" />");
|
<input onclick=""@(() => { })"" />");
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
|
|
@ -301,7 +299,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@(x => { })"" />");
|
<input onclick=""@(x => { })"" />");
|
||||||
|
|
||||||
// Assert
|
// Assert
|
||||||
|
|
@ -317,7 +314,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
void OnClick() {
|
void OnClick() {
|
||||||
|
|
@ -337,7 +333,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
void OnClick(UIMouseEventArgs e) {
|
void OnClick(UIMouseEventArgs e) {
|
||||||
|
|
@ -357,7 +352,6 @@ namespace Test
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
void OnClick(UIEventArgs e) {
|
void OnClick(UIEventArgs e) {
|
||||||
|
|
@ -378,7 +372,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
Task OnClick()
|
Task OnClick()
|
||||||
|
|
@ -401,7 +394,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""@OnClick"" />
|
<input onclick=""@OnClick"" />
|
||||||
@functions {
|
@functions {
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
|
|
@ -424,7 +416,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""async (e) => await Task.Delay(10)"" />
|
<input onclick=""async (e) => await Task.Delay(10)"" />
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
@ -442,7 +433,6 @@ namespace Test
|
||||||
// Act
|
// Act
|
||||||
var generated = CompileToCSharp(@"
|
var generated = CompileToCSharp(@"
|
||||||
@using System.Threading.Tasks
|
@using System.Threading.Tasks
|
||||||
@using Microsoft.AspNetCore.Blazor
|
|
||||||
<input onclick=""async (e) => await Task.Delay(10)"" />
|
<input onclick=""async (e) => await Task.Delay(10)"" />
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,8 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -20,13 +21,11 @@ Document -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
HtmlContent - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (31:1,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (47:1,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (67:2,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (83:2,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
HtmlContent - (120:2,53 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (84:1,53 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (120:2,53 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (84:1,53 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,3 @@ Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (222:9,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (335:14,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,8 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
@ -32,7 +29,7 @@ using Microsoft.AspNetCore.Blazor;
|
||||||
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#line 4 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 3 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
|
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -20,15 +21,13 @@ Document -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
HtmlContent - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (31:1,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (47:1,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (67:2,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (83:2,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - (84:2,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
IntermediateToken - (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
HtmlContent - (95:2,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (59:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (95:2,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (59:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
CSharpCode - (109:3,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
CSharpCode - (73:2,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (109:3,12 [91] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick(UIMouseEventArgs e) \n {\n return Task.CompletedTask;\n }\n
|
IntermediateToken - (73:2,12 [91] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick(UIMouseEventArgs e) \n {\n return Task.CompletedTask;\n }\n
|
||||||
|
|
|
||||||
|
|
@ -3,24 +3,19 @@ Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (222:9,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (335:14,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
Source Location: (84:2,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|OnClick|
|
|OnClick|
|
||||||
Generated Location: (1110:31,136 [7] )
|
Generated Location: (1083:28,136 [7] )
|
||||||
|OnClick|
|
|OnClick|
|
||||||
|
|
||||||
Source Location: (109:3,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (73:2,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
{
|
{
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
Generated Location: (1233:35,12 [91] )
|
Generated Location: (1206:32,12 [91] )
|
||||||
|
|
|
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,8 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -20,13 +21,11 @@ Document -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
HtmlContent - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (31:1,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (47:1,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (67:2,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (83:2,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
HtmlContent - (120:2,53 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (84:1,53 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (120:2,53 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (84:1,53 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,3 @@ Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (222:9,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (335:14,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,11 +11,8 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
@ -32,7 +29,7 @@ using Microsoft.AspNetCore.Blazor;
|
||||||
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#line 4 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 3 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
|
|
||||||
Task OnClick()
|
Task OnClick()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -20,15 +21,13 @@ Document -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
HtmlContent - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (31:1,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (47:1,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (67:2,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (83:2,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - (84:2,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
IntermediateToken - (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
HtmlContent - (95:2,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (59:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (95:2,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (59:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
CSharpCode - (109:3,12 [73] x:\dir\subdir\Test\TestComponent.cshtml)
|
CSharpCode - (73:2,12 [73] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (109:3,12 [73] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick() \n {\n return Task.CompletedTask;\n }\n
|
IntermediateToken - (73:2,12 [73] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick() \n {\n return Task.CompletedTask;\n }\n
|
||||||
|
|
|
||||||
|
|
@ -3,24 +3,19 @@ Source Location: (1:0,1 [28] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
Generated Location: (222:9,0 [28] )
|
Generated Location: (222:9,0 [28] )
|
||||||
|using System.Threading.Tasks|
|
|using System.Threading.Tasks|
|
||||||
|
|
||||||
Source Location: (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (335:14,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
Source Location: (84:2,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|OnClick|
|
|OnClick|
|
||||||
Generated Location: (1110:31,136 [7] )
|
Generated Location: (1083:28,136 [7] )
|
||||||
|OnClick|
|
|OnClick|
|
||||||
|
|
||||||
Source Location: (109:3,12 [73] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (73:2,12 [73] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
Task OnClick()
|
Task OnClick()
|
||||||
{
|
{
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
Generated Location: (1233:35,12 [73] )
|
Generated Location: (1206:32,12 [73] )
|
||||||
|
|
|
|
||||||
Task OnClick()
|
Task OnClick()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (66:1,35 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (66:1,35 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (1061:28,35 [11] )
|
Generated Location: (1152:30,35 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (95:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (95:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1480:41,12 [50] )
|
Generated Location: (1571:43,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (66:1,35 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (66:1,35 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (1061:28,35 [11] )
|
Generated Location: (1152:30,35 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (95:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (95:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1514:40,12 [50] )
|
Generated Location: (1605:42,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (56:1,25 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (56:1,25 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (1051:28,25 [11] )
|
Generated Location: (1142:30,25 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (85:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (85:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1470:41,12 [50] )
|
Generated Location: (1561:43,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (56:1,25 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (56:1,25 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (1051:28,25 [11] )
|
Generated Location: (1142:30,25 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (85:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (85:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1504:40,12 [50] )
|
Generated Location: (1595:42,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (72:1,41 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (72:1,41 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
|
|
||||||
Source Location: (122:2,12 [77] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (122:2,12 [77] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
||||||
|
|
|
|
||||||
Generated Location: (1252:31,12 [77] )
|
Generated Location: (1343:33,12 [77] )
|
||||||
|
|
|
|
||||||
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (72:1,41 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (72:1,41 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (101:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (101:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1234:31,12 [50] )
|
Generated Location: (1325:33,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (49:1,18 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (49:1,18 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (78:2,12 [55] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (78:2,12 [55] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public string ParentValue { get; set; } = "hi";
|
public string ParentValue { get; set; } = "hi";
|
||||||
|
|
|
|
||||||
Generated Location: (1234:31,12 [55] )
|
Generated Location: (1325:33,12 [55] )
|
||||||
|
|
|
|
||||||
public string ParentValue { get; set; } = "hi";
|
public string ParentValue { get; set; } = "hi";
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (43:1,12 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (43:1,12 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (72:2,12 [55] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (72:2,12 [55] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public string ParentValue { get; set; } = "hi";
|
public string ParentValue { get; set; } = "hi";
|
||||||
|
|
|
|
||||||
Generated Location: (1234:31,12 [55] )
|
Generated Location: (1325:33,12 [55] )
|
||||||
|
|
|
|
||||||
public string ParentValue { get; set; } = "hi";
|
public string ParentValue { get; set; } = "hi";
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (61:1,30 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (61:1,30 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|Enabled|
|
|Enabled|
|
||||||
Generated Location: (973:26,78 [7] )
|
Generated Location: (1064:28,78 [7] )
|
||||||
|Enabled|
|
|Enabled|
|
||||||
|
|
||||||
Source Location: (86:2,12 [41] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (86:2,12 [41] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public bool Enabled { get; set; }
|
public bool Enabled { get; set; }
|
||||||
|
|
|
|
||||||
Generated Location: (1222:31,12 [41] )
|
Generated Location: (1313:33,12 [41] )
|
||||||
|
|
|
|
||||||
public bool Enabled { get; set; }
|
public bool Enabled { get; set; }
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
|
|
||||||
Source Location: (85:1,54 [6] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (85:1,54 [6] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|Format|
|
|Format|
|
||||||
Generated Location: (986:26,91 [6] )
|
Generated Location: (1077:28,91 [6] )
|
||||||
|Format|
|
|Format|
|
||||||
|
|
||||||
Source Location: (108:2,12 [135] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (108:2,12 [135] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
@ -19,7 +19,7 @@ Source Location: (108:2,12 [135] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
||||||
public string Format { get; set; } = "MM/dd/yyyy";
|
public string Format { get; set; } = "MM/dd/yyyy";
|
||||||
|
|
|
|
||||||
Generated Location: (1250:31,12 [135] )
|
Generated Location: (1341:33,12 [135] )
|
||||||
|
|
|
|
||||||
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|CurrentDate|
|
|CurrentDate|
|
||||||
|
|
||||||
Source Location: (111:2,12 [77] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (111:2,12 [77] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
||||||
|
|
|
|
||||||
Generated Location: (1262:31,12 [77] )
|
Generated Location: (1353:33,12 [77] )
|
||||||
|
|
|
|
||||||
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
public DateTime CurrentDate { get; set; } = new DateTime(2018, 1, 1);
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (57:1,26 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (86:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (86:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1234:31,12 [50] )
|
Generated Location: (1325:33,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (45:1,14 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (45:1,14 [11] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
Generated Location: (973:26,78 [11] )
|
Generated Location: (1064:28,78 [11] )
|
||||||
|ParentValue|
|
|ParentValue|
|
||||||
|
|
||||||
Source Location: (74:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (74:2,12 [50] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
Generated Location: (1234:31,12 [50] )
|
Generated Location: (1325:33,12 [50] )
|
||||||
|
|
|
|
||||||
public int ParentValue { get; set; } = 42;
|
public int ParentValue { get; set; } = 42;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
@ -30,7 +27,7 @@ global::System.Object __typeHelper = "*, TestAssembly";
|
||||||
{
|
{
|
||||||
base.BuildRenderTree(builder);
|
base.BuildRenderTree(builder);
|
||||||
__o = new System.Action<Microsoft.AspNetCore.Blazor.UIEventArgs>(
|
__o = new System.Action<Microsoft.AspNetCore.Blazor.UIEventArgs>(
|
||||||
#line 3 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
Increment
|
Increment
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
|
|
@ -41,7 +38,7 @@ global::System.Object __typeHelper = "*, TestAssembly";
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#line 5 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 4 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
|
|
||||||
private int counter;
|
private int counter;
|
||||||
private void Increment(UIEventArgs e) {
|
private void Increment(UIEventArgs e) {
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -21,13 +22,11 @@ Document -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (29:0,29 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
HtmlContent - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
ComponentExtensionNode - (31:1,0 [35] x:\dir\subdir\Test\TestComponent.cshtml) - MyComponent - Test.MyComponent
|
||||||
IntermediateToken - (65:1,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
ComponentAttributeExtensionNode - (53:1,22 [10] x:\dir\subdir\Test\TestComponent.cshtml) - OnClick - OnClick
|
||||||
ComponentExtensionNode - (67:2,0 [35] x:\dir\subdir\Test\TestComponent.cshtml) - MyComponent - Test.MyComponent
|
CSharpExpression - (54:1,23 [9] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
ComponentAttributeExtensionNode - (89:2,22 [10] x:\dir\subdir\Test\TestComponent.cshtml) - OnClick - OnClick
|
IntermediateToken - (54:1,23 [9] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - Increment
|
||||||
CSharpExpression - (90:2,23 [9] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (66:1,35 [4] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (90:2,23 [9] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - Increment
|
IntermediateToken - (66:1,35 [4] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n\n
|
||||||
HtmlContent - (102:2,35 [4] x:\dir\subdir\Test\TestComponent.cshtml)
|
CSharpCode - (82:3,12 [100] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (102:2,35 [4] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n\n
|
IntermediateToken - (82:3,12 [100] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n private int counter;\n private void Increment(UIEventArgs e) {\n counter++;\n }\n
|
||||||
CSharpCode - (118:4,12 [100] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
IntermediateToken - (118:4,12 [100] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n private int counter;\n private void Increment(UIEventArgs e) {\n counter++;\n }\n
|
|
||||||
|
|
|
||||||
|
|
@ -1,26 +1,21 @@
|
||||||
Source Location: (32:1,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (257:10,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (586:19,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (90:2,23 [9] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (54:1,23 [9] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|Increment|
|
|Increment|
|
||||||
Generated Location: (1166:33,23 [9] )
|
Generated Location: (1139:30,23 [9] )
|
||||||
|Increment|
|
|Increment|
|
||||||
|
|
||||||
Source Location: (118:4,12 [100] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (82:3,12 [100] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
private int counter;
|
private int counter;
|
||||||
private void Increment(UIEventArgs e) {
|
private void Increment(UIEventArgs e) {
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
Generated Location: (1483:44,12 [100] )
|
Generated Location: (1456:41,12 [100] )
|
||||||
|
|
|
|
||||||
private int counter;
|
private int counter;
|
||||||
private void Increment(UIEventArgs e) {
|
private void Increment(UIEventArgs e) {
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (62:1,31 [13] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (62:1,31 [13] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|42.ToString()|
|
|42.ToString()|
|
||||||
Generated Location: (997:28,31 [13] )
|
Generated Location: (1088:30,31 [13] )
|
||||||
|42.ToString()|
|
|42.ToString()|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (55:1,24 [23] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (55:1,24 [23] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|(e) => { Increment(); }|
|
|(e) => { Increment(); }|
|
||||||
Generated Location: (1049:28,24 [23] )
|
Generated Location: (1140:30,24 [23] )
|
||||||
|(e) => { Increment(); }|
|
|(e) => { Increment(); }|
|
||||||
|
|
||||||
Source Location: (98:3,12 [87] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (98:3,12 [87] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
@ -15,7 +15,7 @@ Source Location: (98:3,12 [87] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
Generated Location: (1380:39,12 [87] )
|
Generated Location: (1471:41,12 [87] )
|
||||||
|
|
|
|
||||||
private int counter;
|
private int counter;
|
||||||
private void Increment() {
|
private void Increment() {
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (86:1,55 [13] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (86:1,55 [13] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|43.ToString()|
|
|43.ToString()|
|
||||||
Generated Location: (1021:28,55 [13] )
|
Generated Location: (1112:30,55 [13] )
|
||||||
|43.ToString()|
|
|43.ToString()|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,20 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (63:2,17 [3] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (63:2,17 [3] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|123|
|
|123|
|
||||||
Generated Location: (983:28,17 [3] )
|
Generated Location: (1074:30,17 [3] )
|
||||||
|123|
|
|123|
|
||||||
|
|
||||||
Source Location: (87:3,18 [4] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (87:3,18 [4] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|true|
|
|true|
|
||||||
Generated Location: (1123:35,18 [4] )
|
Generated Location: (1214:37,18 [4] )
|
||||||
|true|
|
|true|
|
||||||
|
|
||||||
Source Location: (146:5,20 [14] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (146:5,20 [14] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|new SomeType()|
|
|new SomeType()|
|
||||||
Generated Location: (1266:42,20 [14] )
|
Generated Location: (1357:44,20 [14] )
|
||||||
|new SomeType()|
|
|new SomeType()|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (70:1,39 [10] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (70:1,39 [10] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|myInstance|
|
|myInstance|
|
||||||
Generated Location: (1132:30,39 [10] )
|
Generated Location: (1223:32,39 [10] )
|
||||||
|myInstance|
|
|myInstance|
|
||||||
|
|
||||||
Source Location: (119:3,12 [133] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (119:3,12 [133] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
@ -14,7 +14,7 @@ Source Location: (119:3,12 [133] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
||||||
void DoSomething() { myInstance.GetHashCode(); } // Avoid 'assigned but not used' warning
|
void DoSomething() { myInstance.GetHashCode(); } // Avoid 'assigned but not used' warning
|
||||||
|
|
|
|
||||||
Generated Location: (1316:37,12 [133] )
|
Generated Location: (1407:39,12 [133] )
|
||||||
|
|
|
|
||||||
Test.MyComponent myInstance;
|
Test.MyComponent myInstance;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Source Location: (36:0,36 [6] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (36:0,36 [6] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|myElem|
|
|myElem|
|
||||||
Generated Location: (865:23,36 [6] )
|
Generated Location: (956:25,36 [6] )
|
||||||
|myElem|
|
|myElem|
|
||||||
|
|
||||||
Source Location: (95:2,12 [147] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (95:2,12 [147] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
@ -9,7 +9,7 @@ Source Location: (95:2,12 [147] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
||||||
void DoSomething() { myElem.GetHashCode(); } // Avoid 'assigned but not used' warning
|
void DoSomething() { myElem.GetHashCode(); } // Avoid 'assigned but not used' warning
|
||||||
|
|
|
|
||||||
Generated Location: (1067:30,12 [147] )
|
Generated Location: (1158:32,12 [147] )
|
||||||
|
|
|
|
||||||
Microsoft.AspNetCore.Blazor.ElementRef myElem;
|
Microsoft.AspNetCore.Blazor.ElementRef myElem;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
@ -28,7 +25,7 @@ using Microsoft.AspNetCore.Blazor;
|
||||||
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
__o = Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(OnClick);
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#line 3 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 2 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
|
|
||||||
void OnClick(UIMouseEventArgs e) {
|
void OnClick(UIMouseEventArgs e) {
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
UsingDirective - (1:0,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -18,15 +19,13 @@ Document -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (34:0,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (0:0,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (34:0,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (16:0,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (36:1,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (52:1,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - (53:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
IntermediateToken - (17:0,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
HtmlContent - (64:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlContent - (28:0,28 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (64:1,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
IntermediateToken - (28:0,28 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
||||||
CSharpCode - (78:2,12 [49] x:\dir\subdir\Test\TestComponent.cshtml)
|
CSharpCode - (42:1,12 [49] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (78:2,12 [49] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n void OnClick(UIMouseEventArgs e) {\n }\n
|
IntermediateToken - (42:1,12 [49] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n void OnClick(UIMouseEventArgs e) {\n }\n
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,14 @@
|
||||||
Source Location: (1:0,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (17:0,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (257:10,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
Source Location: (53:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|OnClick|
|
|OnClick|
|
||||||
Generated Location: (1032:27,136 [7] )
|
Generated Location: (1005:24,136 [7] )
|
||||||
|OnClick|
|
|OnClick|
|
||||||
|
|
||||||
Source Location: (78:2,12 [49] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (42:1,12 [49] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
void OnClick(UIMouseEventArgs e) {
|
void OnClick(UIMouseEventArgs e) {
|
||||||
}
|
}
|
||||||
|
|
|
|
||||||
Generated Location: (1155:31,12 [49] )
|
Generated Location: (1128:28,12 [49] )
|
||||||
|
|
|
|
||||||
void OnClick(UIMouseEventArgs e) {
|
void OnClick(UIMouseEventArgs e) {
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
#line 1 "x:\dir\subdir\Test\TestComponent.cshtml"
|
using Microsoft.AspNetCore.Blazor;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
|
|
||||||
#line default
|
|
||||||
#line hidden
|
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
UsingDirective - (1:0,1 [33] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
@ -18,11 +19,9 @@ Document -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlContent - (34:0,34 [2] x:\dir\subdir\Test\TestComponent.cshtml)
|
HtmlElement - (0:0,0 [31] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
IntermediateToken - (34:0,34 [2] x:\dir\subdir\Test\TestComponent.cshtml) - Html - \n
|
HtmlAttribute - (16:0,16 [11] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
HtmlElement - (36:1,0 [31] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
|
||||||
HtmlAttribute - (52:1,16 [11] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - (54:1,18 [8] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - x => { }
|
IntermediateToken - (18:0,18 [8] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - x => { }
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,5 @@
|
||||||
Source Location: (1:0,1 [33] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (18:0,18 [8] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
Generated Location: (257:10,0 [33] )
|
|
||||||
|using Microsoft.AspNetCore.Blazor|
|
|
||||||
|
|
||||||
Source Location: (54:1,18 [8] x:\dir\subdir\Test\TestComponent.cshtml)
|
|
||||||
|x => { }|
|
|x => { }|
|
||||||
Generated Location: (1032:27,136 [8] )
|
Generated Location: (1005:24,136 [8] )
|
||||||
|x => { }|
|
|x => { }|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@ namespace Test
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 219
|
#pragma warning disable 219
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,8 @@ Document -
|
||||||
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [32] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [17] ) - System.Linq
|
UsingDirective - (53:3,1 [17] ) - System.Linq
|
||||||
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
UsingDirective - (73:4,1 [28] ) - System.Threading.Tasks
|
||||||
|
UsingDirective - (104:5,1 [33] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [44] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
DesignTimeDirective -
|
DesignTimeDirective -
|
||||||
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
DirectiveToken - (14:0,14 [32] ) - "*, Microsoft.AspNetCore.Blazor"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (14:0,14 [15] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
Generated Location: (468:14,38 [15] )
|
Generated Location: (559:16,38 [15] )
|
||||||
|*, TestAssembly|
|
|*, TestAssembly|
|
||||||
|
|
||||||
Source Location: (48:1,17 [1] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (48:1,17 [1] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|y|
|
|y|
|
||||||
Generated Location: (1043:28,17 [1] )
|
Generated Location: (1134:30,17 [1] )
|
||||||
|y|
|
|y|
|
||||||
|
|
||||||
Source Location: (67:2,12 [24] x:\dir\subdir\Test\TestComponent.cshtml)
|
Source Location: (67:2,12 [24] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
|
|
|
|
||||||
string y = null;
|
string y = null;
|
||||||
|
|
|
|
||||||
Generated Location: (1466:40,12 [24] )
|
Generated Location: (1557:42,12 [24] )
|
||||||
|
|
|
|
||||||
string y = null;
|
string y = null;
|
||||||
|
|
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ namespace Test
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,14 @@ Document -
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [35] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [35] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [46] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlElement - (67:2,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
HtmlElement - (31:1,0 [53] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
HtmlAttribute - (83:2,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
HtmlAttribute - (47:1,16 [33] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
IntermediateToken - - CSharp - "async (e) => await Task.Delay(10)"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ namespace Test
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Blazor;
|
using Microsoft.AspNetCore.Blazor;
|
||||||
|
using Microsoft.AspNetCore.Blazor.Components;
|
||||||
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
public class TestComponent : Microsoft.AspNetCore.Blazor.Components.BlazorComponent
|
||||||
{
|
{
|
||||||
#pragma warning disable 1998
|
#pragma warning disable 1998
|
||||||
|
|
@ -19,7 +20,7 @@ namespace Test
|
||||||
builder.CloseElement();
|
builder.CloseElement();
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
#line 4 "x:\dir\subdir\Test\TestComponent.cshtml"
|
#line 3 "x:\dir\subdir\Test\TestComponent.cshtml"
|
||||||
|
|
||||||
Task OnClick(UIMouseEventArgs e)
|
Task OnClick(UIMouseEventArgs e)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,16 +4,17 @@ Document -
|
||||||
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
UsingDirective - (18:2,1 [34] ) - System.Collections.Generic
|
||||||
UsingDirective - (53:3,1 [19] ) - System.Linq
|
UsingDirective - (53:3,1 [19] ) - System.Linq
|
||||||
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
UsingDirective - (1:0,1 [30] x:\dir\subdir\Test\TestComponent.cshtml) - System.Threading.Tasks
|
||||||
UsingDirective - (32:1,1 [35] x:\dir\subdir\Test\TestComponent.cshtml) - Microsoft.AspNetCore.Blazor
|
UsingDirective - (104:5,1 [35] ) - Microsoft.AspNetCore.Blazor
|
||||||
|
UsingDirective - (140:6,1 [46] ) - Microsoft.AspNetCore.Blazor.Components
|
||||||
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
ClassDeclaration - - public - TestComponent - Microsoft.AspNetCore.Blazor.Components.BlazorComponent -
|
||||||
MethodDeclaration - - protected override - void - BuildRenderTree
|
MethodDeclaration - - protected override - void - BuildRenderTree
|
||||||
CSharpCode -
|
CSharpCode -
|
||||||
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
IntermediateToken - - CSharp - base.BuildRenderTree(builder);
|
||||||
HtmlElement - (67:2,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
HtmlElement - (31:1,0 [28] x:\dir\subdir\Test\TestComponent.cshtml) - input
|
||||||
HtmlAttribute - (83:2,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
HtmlAttribute - (47:1,16 [8] x:\dir\subdir\Test\TestComponent.cshtml) - onclick=" - "
|
||||||
CSharpExpressionAttributeValue - -
|
CSharpExpressionAttributeValue - -
|
||||||
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
IntermediateToken - - CSharp - Microsoft.AspNetCore.Blazor.Components.BindMethods.GetEventHandlerValue<Microsoft.AspNetCore.Blazor.UIMouseEventArgs>(
|
||||||
IntermediateToken - (84:2,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
IntermediateToken - (48:1,17 [7] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - OnClick
|
||||||
IntermediateToken - - CSharp - )
|
IntermediateToken - - CSharp - )
|
||||||
CSharpCode - (109:3,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
CSharpCode - (73:2,12 [91] x:\dir\subdir\Test\TestComponent.cshtml)
|
||||||
IntermediateToken - (109:3,12 [91] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick(UIMouseEventArgs e) \n {\n return Task.CompletedTask;\n }\n
|
IntermediateToken - (73:2,12 [91] x:\dir\subdir\Test\TestComponent.cshtml) - CSharp - \n Task OnClick(UIMouseEventArgs e) \n {\n return Task.CompletedTask;\n }\n
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue