From 042d97a00503fe9d635a0d90f9dbdccbefdabc60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=B6nbach?= Date: Fri, 29 May 2020 11:55:13 +0200 Subject: [PATCH] =?UTF-8?q?Unn=C3=B6tige=20Dateien=20entfernt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 36 - .vscode/tasks.json | 42 - obj/BuecherwurmAPI.csproj.nuget.dgspec.json | 78 - obj/BuecherwurmAPI.csproj.nuget.g.props | 15 - ...CoreApp,Version=v3.1.AssemblyAttributes.cs | 4 - .../BuecherwurmAPI.AssemblyInfo.cs | 23 - .../BuecherwurmAPI.AssemblyInfoInputs.cache | 1 - ...mAPI.MvcApplicationPartsAssemblyInfo.cache | 0 ...echerwurmAPI.RazorTargetAssemblyInfo.cache | 1 - .../netcoreapp3.1/BuecherwurmAPI.assets.cache | Bin 6840 -> 0 bytes .../BuecherwurmAPI.csproj.CopyComplete | 0 ...cherwurmAPI.csproj.CoreCompileInputs.cache | 1 - ...BuecherwurmAPI.csproj.FileListAbsolute.txt | 24 - ...echerwurmAPI.csprojAssemblyReference.cache | Bin 424 -> 0 bytes obj/Debug/netcoreapp3.1/BuecherwurmAPI.dll | Bin 16896 -> 0 bytes obj/Debug/netcoreapp3.1/BuecherwurmAPI.exe | Bin 174592 -> 0 bytes .../BuecherwurmAPI.genruntimeconfig.cache | 1 - obj/Debug/netcoreapp3.1/BuecherwurmAPI.pdb | Bin 5772 -> 0 bytes obj/Debug/netcoreapp3.1/project.razor.json | 20524 ---------------- ...cherwurmAPI.StaticWebAssets.Manifest.cache | 0 .../BuecherwurmAPI.StaticWebAssets.xml | 1 - 21 files changed, 20751 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json delete mode 100644 obj/BuecherwurmAPI.csproj.nuget.dgspec.json delete mode 100644 obj/BuecherwurmAPI.csproj.nuget.g.props delete mode 100644 obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfo.cs delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfoInputs.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.MvcApplicationPartsAssemblyInfo.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.RazorTargetAssemblyInfo.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.assets.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CopyComplete delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CoreCompileInputs.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.FileListAbsolute.txt delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.csprojAssemblyReference.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.dll delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.exe delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.genruntimeconfig.cache delete mode 100644 obj/Debug/netcoreapp3.1/BuecherwurmAPI.pdb delete mode 100644 obj/Debug/netcoreapp3.1/project.razor.json delete mode 100644 obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.Manifest.cache delete mode 100644 obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.xml diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 24247d9..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - // Use IntelliSense to find out which attributes exist for C# debugging - // Use hover for the description of the existing attributes - // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (web)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/BuecherwurmAPI.dll", - "args": [], - "cwd": "${workspaceFolder}", - "stopAtEntry": false, - // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser - "serverReadyAction": { - "action": "openExternally", - "pattern": "^\\s*Now listening on:\\s+(https?://\\S+)" - }, - "env": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "sourceFileMap": { - "/Views": "${workspaceFolder}/Views" - } - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach", - "processId": "${command:pickProcess}" - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index bc5579d..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/BuecherwurmAPI.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/BuecherwurmAPI.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/BuecherwurmAPI.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file diff --git a/obj/BuecherwurmAPI.csproj.nuget.dgspec.json b/obj/BuecherwurmAPI.csproj.nuget.dgspec.json deleted file mode 100644 index 18d6642..0000000 --- a/obj/BuecherwurmAPI.csproj.nuget.dgspec.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\naumanfe\\Desktop\\BuecherwurmAPI\\BuecherwurmAPI.csproj": {} - }, - "projects": { - "C:\\Users\\naumanfe\\Desktop\\BuecherwurmAPI\\BuecherwurmAPI.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\naumanfe\\Desktop\\BuecherwurmAPI\\BuecherwurmAPI.csproj", - "projectName": "BuecherwurmAPI", - "projectPath": "C:\\Users\\naumanfe\\Desktop\\BuecherwurmAPI\\BuecherwurmAPI.csproj", - "packagesPath": "C:\\Users\\naumanfe\\.nuget\\packages\\", - "outputPath": "C:\\Users\\naumanfe\\Desktop\\BuecherwurmAPI\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Microsoft\\Xamarin\\NuGet\\", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\naumanfe\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "netcoreapp3.1": { - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "dependencies": { - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[7.0.0, )" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { - "target": "Package", - "version": "[3.1.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.300\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/obj/BuecherwurmAPI.csproj.nuget.g.props b/obj/BuecherwurmAPI.csproj.nuget.g.props deleted file mode 100644 index b1e38f7..0000000 --- a/obj/BuecherwurmAPI.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\naumanfe\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.6.0 - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs deleted file mode 100644 index 9a79c37..0000000 --- a/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -//[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfo.cs deleted file mode 100644 index 9071158..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 -// -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("BuecherwurmAPI")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("BuecherwurmAPI")] -[assembly: System.Reflection.AssemblyTitleAttribute("BuecherwurmAPI")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfoInputs.cache deleted file mode 100644 index 37bd05f..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0848efc0ec02497d4272fec239ac4c6242f14bec diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.RazorTargetAssemblyInfo.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.RazorTargetAssemblyInfo.cache deleted file mode 100644 index 2eb6189..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.RazorTargetAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -ed9291efb2fcd04a6651c23e6d75ec73cb57b20c diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.assets.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.assets.cache deleted file mode 100644 index c4596da249aa34c28ec36132ea9c37d1710898e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6840 zcmdUz&r=*l6vv5X6G;sD0U`+z2{C{{8kU71R9V(afFc4?uv%6*RXXf8Ft9r_H8YE1 z?#l>%pU5{0saCJm^XN4}9O*>FM6t-ep)t%~W;m&g<9RpZBJJyw@9V zF6S?FbaedoUFG}F|NQjfw?F^>`0LU4hQIjg-XA|ae$;#S-0Q|qKMwrzYd0xH&t>{8 zEX*5k``q&l+pJbhdxsm$uI}={aLwX@xyyaStOicSbY1Qlb8M1L8f9zSuzBDIrd=|< z(iDmEq_Y<4uu{34i3T`BzfVzln#x%!ke{Oh`FSdkKRR;~0>(cIxb0hx?X!wi^c>&W z30R4{+%9pucx2i8yckfmF`EK)QFgW#cXmJSY(;dY+Vl)D!=_FuunA6wO_0MT$R8eW zl7u&Xmz-I2JkIug$9B!2xM$>8mQCv%EjjbPyUv3Jw0l79HqcH5y+|MceU=J9FHr#~ z98ns`K+k;<4?;>`OvdXkUm7IW9kl~jOjP>d=50=bwd7E~xC8u1XP0K&> z172a4V@$IgeOZt1sM}YT%@|uXm6f+t4_&9h0CR&1VEU;526Dha?zRa-4CQE}Iu2?x zR#o9{(%>rG3-k^+$OYWTe;bbRiWM|-TUNMDAzUPV6>}hg`C^0#xxoAqE4iI7DxDZ| zGON7HZSI-j{@=u{lg*%4R+r<(ss)1y3vNXgKrSr!9TZ>!k$Nod^qZfpyp>RzN#EqX@t$S@v!-xSaU- z1!ylu+A8930&yflgj^uDyR3peIun7%0@FWe`k5tUtY3h>iaDCVd^y5|Twv1Q@IkQE zCyy>AY{ec}&1W%!U?x707 z`Vg(oW3mOP_LExdN8??yVtSTcJDUyEPn>X(qYWO!)~AxNAb7`6~U7k=_{fbXF}JBtpz0kxafy|6$o66%n!N zESsZx^_i!at}x5psNK)4l$5xwTdjGAZuRIUEE8VZU84J;y%oA83NQ6;kwFvnS9lXj zxJO^)Vx+llR(MzRKkBfZz%UbD$3190tP;w_(F4;3b;Nf}l$i-H&}KB_$)0u5DLz@+ z==8OycX`(}q3ygeuEi+rg|M0Ma%#1uU5XoZ&Ql{|fFxtubG7TFVa*uHNS9h`qu)$; z0W_AP2XO%;W93Yk{SMNmqE1k{q?w3f*4iaaV>mt9yos{o5VDAI6)9rw@rL$UF=Rp$ zUP}|5&o}fq*{sLpw$U=E&!y^DCIR40Bms9Cx`_R&B<|WYVXUEPPFPi!PGD5w>O?xx z=xW(Ted2*mI`h8IgTj%^&wI5LrgOn@k5-+cSw0(hRetS0_XEog?|rta+t}&4>UXnQ zTZbiu(4`BeMiX&Jkq4sq~2fLnhaS0 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CopyComplete b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9397391..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6a5350a5cb714167d5d3cf3860661776b39d69a6 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.FileListAbsolute.txt deleted file mode 100644 index 21f0938..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,24 +0,0 @@ -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.exe -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.deps.json -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.runtimeconfig.json -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.runtimeconfig.dev.json -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\BuecherwurmAPI.pdb -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\AutoMapper.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\bin\Debug\netcoreapp3.1\Newtonsoft.Json.Bson.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.csprojAssemblyReference.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.AssemblyInfoInputs.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.AssemblyInfo.cs -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.csproj.CoreCompileInputs.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.MvcApplicationPartsAssemblyInfo.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.RazorTargetAssemblyInfo.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.csproj.CopyComplete -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\staticwebassets\BuecherwurmAPI.StaticWebAssets.Manifest.cache -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\staticwebassets\BuecherwurmAPI.StaticWebAssets.xml -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.dll -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.pdb -C:\Users\naumanfe\Desktop\BuecherwurmAPI\obj\Debug\netcoreapp3.1\BuecherwurmAPI.genruntimeconfig.cache diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csprojAssemblyReference.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.csprojAssemblyReference.cache deleted file mode 100644 index 9d7f603646eb94255c63cb66223c819fe0ddb5b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 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 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.exe b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.exe deleted file mode 100644 index 8798d07a18e092730269b39dcebdf7eef1f2d774..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174592 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 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.genruntimeconfig.cache b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.genruntimeconfig.cache deleted file mode 100644 index 34bedab..0000000 --- a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -86c8e15dd33445635927cfaf398408205fd11473 diff --git a/obj/Debug/netcoreapp3.1/BuecherwurmAPI.pdb b/obj/Debug/netcoreapp3.1/BuecherwurmAPI.pdb deleted file mode 100644 index 6bf2bfc4f7c2c3d1ca819c8af338ed722e8565a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5772 zcma)A3v^7^8s7Wl%$YN41uIc@fG z8TGzU#$(yoBGMn8)9`ut*xW3zF5rbpL7 z;Z20`G3#_XsEcov4hRGE1K0si1F(D$Kme=*n7q#t*r5OsfOWzF9Ka8N7d&GzT$@!x z=95r(!hR!YD`LI7<3)9EtFwB*Bj(Rbc0U9mP{Jnde9o*ll2=HIyW4 zIPyN&BVbbmN-_nGybN|7*f=dEDO!$jA|=5h=sM7K9O*AI*i&GC z02^U|aSa?<0=5b4d9b&@QZfMEaJb?RM+)H$rvV&*#hf3>@#D#Az2LQhjykSKAIJ8%_I(_6T+=>|dIZB!k7PLNofwXK zXNIHRh2f}oWjN|l3`aeh;i$(j9CeA|sK+uK^*Dy3-kss7$1@!D1csyDli{fMVmRuL zF&uTAQ@(hip2%?2lNgSAGQ&~t!*JC5G92~C8IF1i!%^?gaMYh*IO+o!j`~1`qmFr= zeg7vJj{0DRWBVZtNBt>=qn^re)Ybh&U5}{a{^1)B^)!Z~p3ZR8GZ~J07Q<1`W;p7@ z7>@dIhNGUtaMW`dj(Q%$Q6CE{*!RA;_Qt^q_3^{N#{+-P+{|$7uLQW3(Jc(e{!1Yv zU`E3W*SeMAxK_&;{tWPP;5u)8T$|H?>%AP;LIrq-5yJ~}qaEI!sF^^`kG?zR z9`)4WyJPmm`NH1!L42{SmEwj-$qf!S6#RCSgbO&PnuBKxm}}Mi+A3fk#c^SO&|!|m zyqE^>I*K;K{Q%btQU8eBr{~GnLNnZd64DI#JQeOg2_Crb)~-?R&2XP05+jyNa9=H^ zDbG`t=QYanKDcktHN*XDftau@3?$oa>6E!q_n zlCiMyIsXN(ZVbO&GG^#O?UzAIi^#swP2Ad%By&R==g57lzVE5gx$f`ZE}T;H$+ErK z+jmJTW?U@%fCxoy83yRAn&eDJWu?{PvN`N>@^Gu&>aR#&FOX-&>?$S$Z7`#{W|<+9pkrSnXOz06i#<22(~ zOnat^w|&RrNJn`&bRJA86=@vpLx)id^)ygV6PGzyGgh`bWzlY~sWRKktlBKAT;Xz5 z`)AZxEz_*d=W3i)=>@s^0;i+gX|77P$fil2FFmI`-+C^3u6f#|{NwK&etOmAp1W@x zd9&pUZt$|KmekNqhfgFXLz%61jsQ47^x(uGLOC}~E8ZAt(!dGzd8$vZaXIqM z)zwyK$ipKhXPI4Q#vdkF88x=bQma#X5G+Q_ak;AH0!O9I;*RXFLjFuk&j$h%!z^nx zOeCw_;?A{CS3hj``ys0>rnOUOtqifNT}o@;g$ULjR)eT7a+#g3n(B73sf(1jw_@jy zb#AQq?6v0l?Vpk6{$tGhb9PobW;Yc6_U#Qa8czv{p*lz;nA@T`5uY$XgzwZx+47?x zaGkL{Sr2P5jfXS?H3q=arH_FWi4rU{rM={B4=vy*OoH$h0XIK^Cp`!i-5eJvz`4FQ zo<0)m;?Z(gyZGljO0AW$j)LcPM`+zy5vD+ytP6|)=MT>vlcTMwn#E-uOgXsr74$k(=kq$o=e0VXHUrjiyI$)j*IOm? zop~uo-x>0J!!yzco-?NC<4FS?QNzHtn5M|M~g#OS0F5)>|~!)gg49lx}ot z-v-qQL#!4*$)laVF4gAm2r5cictV~tPq^}O;edaf>VN#RhF=$M?czTnX;9QXr8lkG zsaEY&R67;b$mrCN=z1$P^{N*JH3)`yeZINeJlke}WatGU()h?T6QW-mdaR;L?4H0a z-DBr28EFf@`d*)ILv{vlo%KqY(xFC;sz&`pg4(^1sJ@mOIbBzU>C{i8_Zs!J4Bj}X zHH~U>V42Btlprb&Hu`t6CWp4*YHA3FU@N;vHCRIj5No)bO$ ziOC-iMVyXxtzG`Ipwfi`%J4H65oTe zcK$A;3r$kv_Dg$fnr2%jwN1ESobX=L=sj~LMK(X*bZPIErEj{vrr8xcynPOCkBuZ-VLWp z-Yw8jE<2p!tfEhLSUs2%{Yez>HjxkxPokVV)cYa-$h~XQUv^EdeDQO6%_m85gNJ{5 z_SfaD*G;-{D>p5!Tebdcenr2B-HY(K2RU1DFP?)R;y(9y8WK)};BbsS`U|}1*-U7( zI{}VfbU=r1-OkAnF4NmVCUyW{Sm_`UJ9x&|LE!x;;XgX)w#3hP;CA$bosrp7^JIs; z!0fV2i)yzY!o~nw;i3z0lz>GLgj4em0`_7zX=3xdlVgsKOWd%2gnU5Gt3K4wsy)2& zmpMP!zdw{#xW^qh5s+ziS<4+xcecIe(S2y~L8&X6Y@8~6VXOMPIWgO@ zsrbX*A2w)jjm~P^_R7pQd+VXcrTN7%PeivnDQf_nCEv^4rHDro3 bt\n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "AuthorizeRouteView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Authorizing", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorizing", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotAuthorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotAuthorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "DefaultLayout" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteData" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n Combines the behaviors of and ,\n so that it displays the page matching the specified route but only if the user\n is authorized to see it.\n \n Additionally, this component supplies a cascading parameter of type ,\n which makes the user's current authentication state available to descendants.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Authorizing", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorizing", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotAuthorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotAuthorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "DefaultLayout" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteData" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorizing", - "ParentTag": "AuthorizeRouteView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorizing", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotAuthorized", - "ParentTag": "AuthorizeRouteView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotAuthorized", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "AuthorizeView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Policy", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Policy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Roles", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Roles" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Authorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Authorizing", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorizing", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotAuthorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotAuthorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Resource", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The resource to which access is being controlled.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Resource" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n Displays differing content depending on the user's authorization status.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "Policy", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Policy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Roles", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Roles" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Authorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Authorizing", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Authorizing", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotAuthorized", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotAuthorized", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Resource", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The resource to which access is being controlled.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Resource" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorized", - "ParentTag": "AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n If you specify a value for this parameter, do not also specify a value for .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorized", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorizing", - "ParentTag": "AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Authorizing", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotAuthorized", - "ParentTag": "AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotAuthorized", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": null, - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CascadingAuthenticationState", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": null, - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "CascadingAuthenticationState", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", - "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.CascadingValue", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "CascadingValue", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "IsFixed", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "IsFixed" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The value to be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.CascadingValue", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that provides a cascading value to all descendant components.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.CascadingValue", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "IsFixed", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n If true, indicates that will not change. This is a\n performance optimization that allows the framework to skip setting up\n change notifications. Set this flag only if you will not change\n during the component's lifetime.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "IsFixed" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Optionally gives a name to the provided value. Descendant components\n will be able to receive the value by specifying this name.\n \n If no name is specified, then descendant components will receive the\n value based the type of value they are requesting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The value to be provided.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "CascadingValue", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n The content to which the value should be provided.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.LayoutView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "LayoutView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Layout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Layout" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.LayoutView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified content inside the specified layout and any further\n nested layouts.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.LayoutView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Layout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of the layout in which to display the content.\n The type must implement and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Layout" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "LayoutView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.LayoutView", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.RouteView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "RouteView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "DefaultLayout" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteData" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.RouteView", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Displays the specified page component, rendering it inside its layout\n and any further nested layouts.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.RouteView", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "DefaultLayout", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the type of a layout to be used if the page does not\n declare any layout. If specified, the type must implement \n and accept a parameter named .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "DefaultLayout" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "RouteData", - "TypeName": "Microsoft.AspNetCore.Components.RouteData", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the route data. This determines the page that will be\n displayed and the parameter values that will be supplied to the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteData" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.Router", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Router", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAssemblies", - "TypeName": "System.Collections.Generic.IEnumerable", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAssemblies" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AppAssembly", - "TypeName": "System.Reflection.Assembly", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppAssembly" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Found", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Found", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotFound", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotFound", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.Router", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n A component that supplies route data corresponding to the current navigation state.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Routing.Router", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAssemblies", - "TypeName": "System.Collections.Generic.IEnumerable", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAssemblies" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AppAssembly", - "TypeName": "System.Reflection.Assembly", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppAssembly" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Found", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Found", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "NotFound", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "NotFound", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Found", - "ParentTag": "Router", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'Found' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Found", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'Found' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotFound", - "ParentTag": "Router", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NotFound", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "AssemblyName": "Microsoft.AspNetCore.Components.Forms", - "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "DataAnnotationsValidator", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "AssemblyName": "Microsoft.AspNetCore.Components.Forms", - "Documentation": "\n \n Adds Data Annotations validation support to an .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "EditForm", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "EditContext" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnValidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnValidSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Renders a form element that cascades an to descendants.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "EditContext", - "TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Supplies the edit context explicitly. If using this parameter, do not\n also supply , since the model value will be taken\n from the property.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "EditContext" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the top-level model object for the form. An edit context will\n be constructed for this model. If using this parameter, do not also supply\n a value for .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnInvalidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnInvalidSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted.\n \n If using this parameter, you are responsible for triggering any validation\n manually, e.g., by calling .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "OnValidSubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "OnValidSubmit", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for all child content expressions.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "EditForm", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.ChildContent", - "Name": "Context", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.", - "Diagnostics": [], - "Metadata": { - "Components.ChildContentParameterName": "True", - "Common.PropertyName": "Context" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputCheckbox", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputDate", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing date values.\n Supported types are and .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputNumber", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing numeric values.\n Supported numeric types are , , , , .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ParsingErrorMessage", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ParsingErrorMessage" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A dropdown selection component.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputSelect", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A dropdown selection component.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "TValue", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "InputSelect", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputText", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n An input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputText", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A multiline input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputTextArea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A multiline input component for editing values.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value of the input. This should be used with two-way binding.\n \n \n @bind-Value=\"model.PropertyName\"\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueChanged", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueChanged", - "Components.EventCallback": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ValueExpression", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValueExpression" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValidationMessage", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "For", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "Components.GenericTyped": "True" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages for a specified field within a cascaded .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "TValue", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "TValue", - "Components.TypeParameter": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "For", - "TypeName": "System.Linq.Expressions.Expression>", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For", - "Components.GenericTyped": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", - "Components.GenericTyped": "True", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ValidationSummary", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Displays a list of validation messages from a cascaded .\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the model to produce the list of validation messages for.\n When specified, this lists all errors that are associated with the model instance.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "NavLink", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ActiveClass", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ActiveClass" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Match" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink" - } - }, - { - "Kind": "Components.Component", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n A component that renders an anchor tag, automatically toggling its 'active'\n class based on whether its 'href' matches the current URI.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Component", - "Name": "ActiveClass", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the CSS class name applied to the NavLink when the\n current route matches the NavLink href.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ActiveClass" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "AdditionalAttributes", - "TypeName": "System.Collections.Generic.IReadOnlyDictionary", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AdditionalAttributes" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "ChildContent", - "TypeName": "Microsoft.AspNetCore.Components.RenderFragment", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ChildContent", - "Components.ChildContent": "True" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "Components.Component", - "Name": "Match", - "TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch", - "IsEnum": true, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Match" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.IComponent", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "NavLink", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent" - } - }, - { - "Kind": "Components.ChildContent", - "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "\n \n Gets or sets the child content of the component.\n \n ", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "ChildContent", - "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink", - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", - "Components.IsSpecialKind": "Components.ChildContent", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onabort", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onabort", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onabort:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onabort:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onabort", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onabort' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onabort" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onabort' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onabort' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onactivate", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onactivate:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onactivate:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onactivate" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onactivate' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onactivate' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onbeforeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforeactivate", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforeactivate:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforeactivate:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onbeforeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforeactivate" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforeactivate' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforeactivate' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onbeforecopy", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecopy", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecopy:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecopy:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforecopy", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onbeforecopy' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforecopy" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecopy' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecopy' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onbeforecut", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecut", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecut:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforecut:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforecut", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onbeforecut' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforecut" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforecut' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforecut' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onbeforedeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforedeactivate", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforedeactivate:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforedeactivate:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforedeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onbeforedeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforedeactivate" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforedeactivate' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforedeactivate' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onbeforepaste", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforepaste", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforepaste:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onbeforepaste:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onbeforepaste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onbeforepaste' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onbeforepaste" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onbeforepaste' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onbeforepaste' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onblur", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onblur", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onblur:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onblur:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onblur", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onblur' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onblur" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onblur' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onblur' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncanplay", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplay", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplay:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplay:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncanplay", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncanplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncanplay" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplay' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplay' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncanplaythrough", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplaythrough", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplaythrough:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncanplaythrough:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncanplaythrough", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncanplaythrough' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncanplaythrough" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncanplaythrough' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncanplaythrough' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onchange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onchange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onchange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onchange' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onchange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onchange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onchange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onclick", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onclick", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onclick:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onclick:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onclick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onclick" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onclick' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onclick' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncontextmenu", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncontextmenu", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncontextmenu:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncontextmenu:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncontextmenu", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncontextmenu' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncontextmenu" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncontextmenu' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncontextmenu' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncopy", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncopy", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncopy:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncopy:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncopy", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncopy' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncopy" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncopy' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncopy' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncuechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncuechange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncuechange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncuechange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncuechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncuechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncuechange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncuechange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncuechange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oncut", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncut", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncut:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oncut:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oncut", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oncut' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oncut" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oncut' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oncut' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondblclick", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondblclick", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondblclick:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondblclick:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondblclick", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondblclick' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondblclick" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondblclick' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondblclick' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondeactivate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondeactivate", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondeactivate:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondeactivate:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondeactivate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondeactivate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondeactivate" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondeactivate' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondeactivate' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondrag", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrag", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrag:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrag:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondrag", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondrag' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondrag" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrag' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondrag' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondragend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragend", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragend:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragend:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondragend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragend" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragend' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondragend' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondragenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragenter", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragenter:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragenter:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondragenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragenter" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragenter' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondragenter' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondragleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragleave", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragleave:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragleave:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondragleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragleave" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragleave' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondragleave' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondragover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragover", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragover:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragover:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondragover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragover" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragover' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondragover' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondragstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragstart", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragstart:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondragstart:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondragstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondragstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondragstart" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondragstart' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondragstart' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondrop", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrop", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrop:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondrop:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondrop", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondrop' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.DragEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondrop" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondrop' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondrop' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ondurationchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondurationchange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondurationchange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ondurationchange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ondurationchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ondurationchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ondurationchange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ondurationchange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ondurationchange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onemptied", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onemptied", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onemptied:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onemptied:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onemptied", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onemptied' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onemptied" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onemptied' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onemptied' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onended", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onended", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onended:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onended:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onended", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onended' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onended" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onended' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onended' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onerror", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onerror:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onerror:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onerror' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ErrorEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onerror" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onerror' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onerror' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onfocus", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocus", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocus:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocus:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocus", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onfocus' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocus" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocus' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onfocus' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onfocusin", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusin", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusin:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusin:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocusin", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onfocusin' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocusin" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusin' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusin' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onfocusout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusout", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusout:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfocusout:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfocusout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onfocusout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.FocusEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfocusout" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfocusout' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onfocusout' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onfullscreenchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenchange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenchange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenchange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfullscreenchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onfullscreenchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfullscreenchange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenchange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenchange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onfullscreenerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenerror", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenerror:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onfullscreenerror:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onfullscreenerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onfullscreenerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onfullscreenerror" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onfullscreenerror' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onfullscreenerror' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ongotpointercapture", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ongotpointercapture", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ongotpointercapture:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ongotpointercapture:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ongotpointercapture", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ongotpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ongotpointercapture" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ongotpointercapture' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ongotpointercapture' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oninput", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninput", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninput:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninput:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oninput", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oninput' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.ChangeEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oninput" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninput' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oninput' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "oninvalid", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninvalid", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninvalid:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@oninvalid:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@oninvalid", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@oninvalid' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "oninvalid" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@oninvalid' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@oninvalid' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onkeydown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeydown", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeydown:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeydown:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeydown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onkeydown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeydown" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeydown' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onkeydown' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onkeypress", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeypress", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeypress:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeypress:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeypress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onkeypress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeypress" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeypress' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onkeypress' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onkeyup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeyup", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeyup:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onkeyup:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onkeyup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onkeyup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.KeyboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onkeyup" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onkeyup' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onkeyup' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onload", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onload", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onload:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onload:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onload", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onload' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onload" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onload' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onload' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onloadeddata", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadeddata", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadeddata:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadeddata:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadeddata", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onloadeddata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadeddata" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadeddata' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onloadeddata' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onloadedmetadata", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadedmetadata", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadedmetadata:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadedmetadata:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadedmetadata", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onloadedmetadata' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadedmetadata" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadedmetadata' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onloadedmetadata' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onloadend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadend", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadend:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadend:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onloadend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadend" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadend' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onloadend' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onloadstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadstart", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadstart:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onloadstart:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onloadstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onloadstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onloadstart" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onloadstart' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onloadstart' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onlostpointercapture", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onlostpointercapture", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onlostpointercapture:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onlostpointercapture:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onlostpointercapture", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onlostpointercapture' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onlostpointercapture" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onlostpointercapture' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onlostpointercapture' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmousedown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousedown", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousedown:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousedown:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousedown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmousedown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousedown" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousedown' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmousedown' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmousemove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousemove", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousemove:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousemove:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousemove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmousemove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousemove" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousemove' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmousemove' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmouseout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseout", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseout:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseout:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmouseout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseout" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseout' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseout' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmouseover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseover", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseover:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseover:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmouseover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseover" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseover' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseover' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmouseup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseup", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseup:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmouseup:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmouseup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmouseup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.MouseEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmouseup" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmouseup' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmouseup' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onmousewheel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousewheel", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousewheel:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onmousewheel:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onmousewheel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onmousewheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onmousewheel" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onmousewheel' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onmousewheel' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpaste", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpaste", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpaste:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpaste:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpaste", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpaste' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ClipboardEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpaste" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpaste' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpaste' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpause", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpause", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpause:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpause:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpause", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpause' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpause" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpause' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpause' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onplay", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplay", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplay:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplay:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onplay", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onplay' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onplay" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplay' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onplay' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onplaying", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplaying", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplaying:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onplaying:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onplaying", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onplaying' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onplaying" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onplaying' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onplaying' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointercancel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointercancel", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointercancel:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointercancel:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointercancel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointercancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointercancel" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointercancel' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointercancel' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerdown", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerdown", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerdown:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerdown:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerdown", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerdown' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerdown" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerdown' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerdown' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerenter", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerenter:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerenter:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerenter" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerenter' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerenter' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerleave", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerleave:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerleave:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerleave" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerleave' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerleave' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerlockchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockchange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockchange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockchange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerlockchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerlockchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerlockchange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockchange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockchange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerlockerror", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockerror", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockerror:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerlockerror:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerlockerror", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerlockerror' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerlockerror" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerlockerror' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerlockerror' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointermove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointermove", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointermove:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointermove:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointermove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointermove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointermove" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointermove' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointermove' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerout", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerout:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerout:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerout" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerout' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerout' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerover", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerover", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerover:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerover:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerover", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerover' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerover" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerover' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerover' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onpointerup", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerup", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerup:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onpointerup:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onpointerup", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onpointerup' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.PointerEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onpointerup" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onpointerup' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onpointerup' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onprogress", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onprogress", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onprogress:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onprogress:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onprogress", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onprogress' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onprogress" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onprogress' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onprogress' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onratechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onratechange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onratechange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onratechange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onratechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onratechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onratechange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onratechange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onratechange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onreadystatechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreadystatechange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreadystatechange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreadystatechange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onreadystatechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onreadystatechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onreadystatechange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreadystatechange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onreadystatechange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onreset", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreset", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreset:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onreset:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onreset", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onreset' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onreset" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onreset' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onreset' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onscroll", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onscroll", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onscroll:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onscroll:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onscroll", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onscroll' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onscroll" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onscroll' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onscroll' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onseeked", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeked", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeked:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeked:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onseeked", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onseeked' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onseeked" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeked' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onseeked' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onseeking", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeking", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeking:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onseeking:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onseeking", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onseeking' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onseeking" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onseeking' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onseeking' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onselect", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselect", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselect:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselect:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselect", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onselect' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselect" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselect' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onselect' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onselectionchange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectionchange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectionchange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectionchange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselectionchange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onselectionchange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselectionchange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectionchange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onselectionchange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onselectstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectstart", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectstart:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onselectstart:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onselectstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onselectstart' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onselectstart" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onselectstart' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onselectstart' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onstalled", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstalled", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstalled:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstalled:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onstalled", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onstalled' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onstalled" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstalled' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onstalled' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onstop", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstop", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstop:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onstop:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onstop", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onstop' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onstop" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onstop' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onstop' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onsubmit", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsubmit", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsubmit:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsubmit:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onsubmit", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onsubmit' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onsubmit" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsubmit' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onsubmit' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onsuspend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsuspend", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsuspend:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onsuspend:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onsuspend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onsuspend' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onsuspend" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onsuspend' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onsuspend' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontimeout", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeout", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeout:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeout:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontimeout", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontimeout' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.ProgressEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontimeout" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeout' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeout' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontimeupdate", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeupdate", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeupdate:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontimeupdate:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontimeupdate", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontimeupdate' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontimeupdate" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontimeupdate' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontimeupdate' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchcancel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchcancel", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchcancel:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchcancel:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchcancel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchcancel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchcancel" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchcancel' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchcancel' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchend", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchend", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchend:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchend:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchend", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchend' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchend" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchend' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchend' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchenter", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchenter", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchenter:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchenter:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchenter", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchenter' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchenter" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchenter' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchenter' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchleave", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchleave", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchleave:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchleave:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchleave", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchleave' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchleave" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchleave' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchleave' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchmove", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchmove", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchmove:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchmove:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchmove", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchmove' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchmove" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchmove' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchmove' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "ontouchstart", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchstart", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchstart:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ontouchstart:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@ontouchstart", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@ontouchstart' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.TouchEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "ontouchstart" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@ontouchstart' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@ontouchstart' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onvolumechange", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onvolumechange", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onvolumechange:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onvolumechange:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onvolumechange", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onvolumechange' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onvolumechange" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onvolumechange' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onvolumechange' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onwaiting", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwaiting", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwaiting:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwaiting:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onwaiting", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onwaiting' attribute to the provided string or delegate value. A delegate value should be of type 'System.EventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onwaiting" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwaiting' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onwaiting' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "System.EventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "onwheel", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwheel", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwheel:preventDefault", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - }, - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@onwheel:stopPropagation", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.EventHandler", - "Name": "@onwheel", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Sets the '@onwheel' attribute to the provided string or delegate value. A delegate value should be of type 'Microsoft.AspNetCore.Components.Web.WheelEventArgs'.", - "Diagnostics": [], - "Metadata": { - "Components.IsWeaklyTyped": "True", - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "onwheel" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.EventHandler", - "Name": "preventDefault", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to cancel (if cancelable) the default action that belongs to the '@onwheel' event.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PreventDefault" - } - }, - { - "Kind": "Components.EventHandler", - "Name": "stopPropagation", - "TypeName": "System.Boolean", - "IsEnum": false, - "Documentation": "Specifies whether to prevent further propagation of the '@onwheel' event in the capturing and bubbling phases.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "StopPropagation" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.EventHandler", - "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers" - } - }, - { - "Kind": "Components.Splat", - "Name": "Attributes", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Merges a collection of attributes into the current element or component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@attributes", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Splat", - "Name": "@attributes", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Merges a collection of attributes into the current element or component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Attributes", - "Common.DirectiveAttribute": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Splat", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", - "Documentation": "\n \n implementation targeting elements containing attributes with URL expected values.\n \n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\n targeted by other s. Runs prior to other s to ensure\n application-relative URLs are resolved.\n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "itemid", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "href", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "applet", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "archive", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "area", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "href", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "audio", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "base", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "href", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "blockquote", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "cite", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "formaction", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "del", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "cite", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "embed", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "form", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "action", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "html", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "manifest", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "iframe", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "img", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "img", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "srcset", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "formaction", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "ins", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "cite", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "href", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "menuitem", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "icon", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "object", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "archive", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "object", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "data", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "q", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "cite", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "source", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "source", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "srcset", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "track", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "video", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "poster", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "video", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "src", - "NameComparison": 0, - "Value": "~/", - "ValueComparison": 2, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <a> elements.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-host", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-protocol", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "a", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL fragment name.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-host", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The host name.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Host" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-protocol", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Protocol" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <cache> elements.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "cache", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "priority", - "TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Priority" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "enabled", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Enabled" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-after", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresAfter" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-on", - "TypeName": "System.DateTimeOffset?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresOn" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-sliding", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresSliding" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryBy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-cookie", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCookie" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-culture", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCulture" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-header", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByHeader" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-query", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByQuery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByRoute" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-user", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByUser" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n A that renders a Razor component.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "component", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "type", - "TypeName": "System.Type", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the component type. This value is required.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ComponentType" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "params", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "param-", - "IndexerTypeName": "System.Object", - "Documentation": "\n \n Gets or sets values for component parameters.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Parameters" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "render-mode", - "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.RenderMode", - "IsEnum": true, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the \n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RenderMode" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "distributed-cache", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "name", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "enabled", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Enabled" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-after", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresAfter" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-on", - "TypeName": "System.DateTimeOffset?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresOn" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "expires-sliding", - "TypeName": "System.TimeSpan?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ExpiresSliding" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryBy" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-cookie", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCookie" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-culture", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by request culture.\n \n Setting this to true would result in the result to be varied by \n and .\n \n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByCulture" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-header", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByHeader" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-query", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByQuery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByRoute" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "vary-by-user", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "VaryByUser" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <environment> elements that conditionally renders\n content based on the current value of .\n If the environment is not listed in the specified or , \n or if it is in , the content will not be rendered.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "environment", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Exclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Include" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "names", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of environment names in which the content should be rendered.\n If the current environment is also in the list, the content will not be rendered.\n \n \n The specified environment names are compared case insensitively to the current value of\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Names" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <button> elements and <input> elements with\n their type attribute set to image or submit.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "button", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "image", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-action", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-all-route-data", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-area", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-controller", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-fragment", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-page-handler", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "submit", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "asp-route-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <form> elements.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "form", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-action", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the action method.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Action" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-antiforgery", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Whether the antiforgery token should be generated.\n \n Defaults to false if user provides an action attribute\n or if the method is ; true otherwise.\n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Antiforgery" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-area", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the area.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Area" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-controller", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the controller.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Controller" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fragment", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets or sets the URL fragment.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Fragment" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Page" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-page-handler", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the page handler.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "PageHandler" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-route", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Route" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-all-route-data", - "TypeName": "System.Collections.Generic.IDictionary", - "IsEnum": false, - "IndexerNamePrefix": "asp-route-", - "IndexerTypeName": "System.String", - "Documentation": "\n \n Additional parameters for the route.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "RouteValues" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <img> elements that supports file versioning.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "img", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "src", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to the src urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Source of the image.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Src" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <input> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-format", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the\n result. Sets the generated \"value\" attribute to that formatted string.\n \n \n Not used if the provided (see ) or calculated \"type\" attribute value is\n checkbox, password, or radio. That is, is used when calling\n .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "type", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The type of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the \n helper to call and the default value. A default is not calculated\n if the provided (see ) or calculated \"type\" attribute value is checkbox,\n hidden, password, or radio.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "InputTypeName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The value of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine the generated \"checked\" attribute\n if is \"radio\". Must not be null in that case.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <label> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "label", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <link> elements that supports fallback href paths.\n \n \n The tag helper won't process for cases with just the 'href' attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-href-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-class", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-property", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-fallback-test-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-href-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "link", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "asp-href-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to the href urls.\n \n \n If true then a query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL of a CSS stylesheet to fallback to in the case the primary one fails.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHref" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHrefExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-href-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to fallback to in the case the primary\n one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackHrefInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-class", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The class name defined in the stylesheet to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestClass" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-property", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The CSS property name to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestProperty" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The CSS property value to use for the fallback test.\n Must be used in conjunction with and ,\n and either or .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestValue" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "href", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Address of the linked resource.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Href" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-href-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "HrefExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-href-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of CSS stylesheets to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "HrefInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-suppress-fallback-integrity", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SuppressFallbackIntegrity" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <option> elements.\n \n \n This works in conjunction with . It reads elements\n content but does not modify that content. The only modification it makes is to add a selected attribute\n in some cases.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "option", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Specifies a value for the <option> element.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n Renders a partial view.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "partial", - "ParentTag": null, - "TagStructure": 2, - "Attributes": [ - { - "Name": "name", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "fallback-name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n View to lookup if the view specified by cannot be located.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackName" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model. Cannot be used together with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "model", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The model to pass into the partial view. Cannot be used together with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Model" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name or path of the partial view that is rendered to the response.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "optional", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n When optional, executing the tag helper will no-op if the view cannot be located. \n Otherwise will throw stating the view could not be found.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Optional" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "view-data", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ViewDataDictionary", - "IsEnum": false, - "IndexerNamePrefix": "view-data-", - "IndexerTypeName": "System.Object", - "Documentation": "\n \n A to pass into the partial view.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ViewData" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <script> elements that supports fallback src paths.\n \n \n The tag helper won't process for cases with just the 'src' attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-append-version", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-src-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-fallback-test", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-src-exclude", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "script", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-src-include", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-append-version", - "TypeName": "System.Boolean?", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Value indicating if file version should be appended to src urls.\n \n \n A query string \"v\" with the encoded content of the file is added.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "AppendVersion" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The URL of a Script tag to fallback to in the case the primary one fails.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrc" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from the fallback list, in\n the case the primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrcExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-src-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to fallback to in the case the\n primary one fails.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackSrcInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-fallback-test", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The script method defined in the primary script to use for the fallback test.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "FallbackTestExpression" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "src", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Address of the external script to use.\n \n \n Passed through to the generated HTML in all cases.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Src" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-src-exclude", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to exclude from loading.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n Must be used in conjunction with .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SrcExclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-src-include", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A comma separated list of globbed file patterns of JavaScript scripts to load.\n The glob patterns are assessed relative to the application's 'webroot' setting.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SrcInclude" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-suppress-fallback-integrity", - "TypeName": "System.Boolean", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Boolean value that determines if an integrity hash will be compared with value.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "SuppressFallbackIntegrity" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <select> elements with asp-for and/or\n asp-items attribute(s).\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "select", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - }, - { - "TagName": "select", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-items", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "asp-items", - "TypeName": "System.Collections.Generic.IEnumerable", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n A collection of objects used to populate the <select> element with\n <optgroup> and <option> elements.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Items" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting <textarea> elements with an asp-for attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "textarea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n An expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - }, - { - "Kind": "ITagHelper", - "Name": "name", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n The name of the <input> element.\n \n \n Passed through to the generated HTML in all cases. Also used to determine whether is\n valid with an empty .\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Name" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-for\n attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "span", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-validation-for", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-validation-for", - "TypeName": "Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExpression", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n Gets an expression to be evaluated against the current model.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "For" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper" - } - }, - { - "Kind": "ITagHelper", - "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", - "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", - "Documentation": "\n \n implementation targeting any HTML element with an asp-validation-summary\n attribute.\n \n ", - "TagOutputHint": null, - "CaseSensitive": false, - "TagMatchingRules": [ - { - "TagName": "div", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "asp-validation-summary", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": {} - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "ITagHelper", - "Name": "asp-validation-summary", - "TypeName": "Microsoft.AspNetCore.Mvc.Rendering.ValidationSummary", - "IsEnum": true, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "\n \n If or , appends a validation\n summary. Otherwise (, the default), this tag helper does nothing.\n \n \n Thrown if setter is called with an undefined value e.g.\n (ValidationSummary)23.\n \n ", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "ValidationSummary" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "ITagHelper", - "Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-", - "NameComparison": 1, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-...", - "TypeName": "System.Collections.Generic.Dictionary", - "IsEnum": false, - "IndexerNamePrefix": "@bind-", - "IndexerTypeName": "System.Object", - "Documentation": "Binds the provided expression to an attribute and a change event, based on the naming of the bind attribute. For example: @bind-value=\"...\" and @bind-value:event=\"onchange\" will assign the current value of the expression to the 'value' attribute, and assign a delegate that attempts to set the value to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the corresponding bind attribute. For example: @bind-value:format=\"...\" will apply a format string to the value specified in @bind-value=\"...\". The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-...' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.Fallback": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Bind" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "select", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "textarea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "checkbox", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'checked' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_checked" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_checked" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-checked", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_checked" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "checked", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "checkbox", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "date", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-dd", - "Components.Bind.TypeAttribute": "date", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "date", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-dd", - "Components.Bind.TypeAttribute": "date", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "datetime-local", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", - "Components.Bind.TypeAttribute": "datetime-local", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "datetime-local", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM-ddTHH:mm:ss", - "Components.Bind.TypeAttribute": "datetime-local", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "month", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM", - "Components.Bind.TypeAttribute": "month", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "month", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "yyyy-MM", - "Components.Bind.TypeAttribute": "month", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "number", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "number", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "number", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "number", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "text", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Components.Bind.TypeAttribute": "text", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "time", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "HH:mm:ss", - "Components.Bind.TypeAttribute": "time", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "type", - "NameComparison": 0, - "Value": "time", - "ValueComparison": 1, - "Diagnostics": [], - "Metadata": {} - }, - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "True", - "Components.Bind.Format": "HH:mm:ss", - "Components.Bind.TypeAttribute": "time", - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind_value", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-value", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind_value" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind-value' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind-value' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Bind", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "input", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'value' attribute and a change event delegate to the 'onchange' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Bind" - }, - "BoundAttributeParameters": [ - { - "Kind": "Components.Bind", - "Name": "format", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "event", - "TypeName": "System.String", - "IsEnum": false, - "Documentation": "Specifies the event handler name to attach for change notifications for the value provided by the '@bind' attribute.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Event_value" - } - }, - { - "Kind": "Components.Bind", - "Name": "culture", - "TypeName": "System.Globalization.CultureInfo", - "IsEnum": false, - "Documentation": "Specifies the culture to use for conversions.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Culture" - } - } - ] - }, - { - "Kind": "Components.Bind", - "Name": "format-value", - "TypeName": "System.String", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Specifies a format to convert the value specified by the '@bind' attribute. The format string can currently only be used with expressions of type DateTime.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Format_value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Common.ClassifyAttributesOnly": "True", - "Components.Bind.ValueAttribute": "value", - "Components.Bind.ChangeAttribute": "onchange", - "Components.Bind.IsInvariantCulture": "False", - "Components.Bind.Format": null, - "Common.TypeName": "Microsoft.AspNetCore.Components.Web.BindAttributes" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputCheckbox", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputDate", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputNumber", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputSelect", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputText", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputText", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputText", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "InputTextArea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea" - } - }, - { - "Kind": "Components.Bind", - "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "AssemblyName": "Microsoft.AspNetCore.Components.Web", - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@bind-Value", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Bind", - "Name": "@bind-Value", - "TypeName": "Microsoft.AspNetCore.Components.EventCallback", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Binds the provided expression to the 'Value' property and a change event delegate to the 'ValueChanged' property of the component.", - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True", - "Common.PropertyName": "Value" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Bind", - "Components.Bind.ValueAttribute": "Value", - "Components.Bind.ChangeAttribute": "ValueChanged", - "Components.Bind.ExpressionAttribute": "ValueExpression", - "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea", - "Components.NameMatch": "Components.FullyQualifiedNameMatch" - } - }, - { - "Kind": "Components.Ref", - "Name": "Ref", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Populates the specified field or property with a reference to the element or component.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@ref", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Ref", - "Name": "@ref", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Populates the specified field or property with a reference to the element or component.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Ref", - "Common.DirectiveAttribute": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Ref", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Ref" - } - }, - { - "Kind": "Components.Key", - "Name": "Key", - "AssemblyName": "Microsoft.AspNetCore.Components", - "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", - "TagOutputHint": null, - "CaseSensitive": true, - "TagMatchingRules": [ - { - "TagName": "*", - "ParentTag": null, - "TagStructure": 0, - "Attributes": [ - { - "Name": "@key", - "NameComparison": 0, - "Value": null, - "ValueComparison": 0, - "Diagnostics": [], - "Metadata": { - "Common.DirectiveAttribute": "True" - } - } - ], - "Diagnostics": [] - } - ], - "BoundAttributes": [ - { - "Kind": "Components.Key", - "Name": "@key", - "TypeName": "System.Object", - "IsEnum": false, - "IndexerNamePrefix": null, - "IndexerTypeName": null, - "Documentation": "Ensures that the component or element will be preserved across renders if (and only if) the supplied key value matches.", - "Diagnostics": [], - "Metadata": { - "Common.PropertyName": "Key", - "Common.DirectiveAttribute": "True" - }, - "BoundAttributeParameters": [] - } - ], - "AllowedChildTags": [], - "Diagnostics": [], - "Metadata": { - "Runtime.Name": "Components.None", - "Components.IsSpecialKind": "Components.Key", - "Common.ClassifyAttributesOnly": "True", - "Common.TypeName": "Microsoft.AspNetCore.Components.Key" - } - } - ], - "CSharpLanguageVersion": 800 - }, - "RootNamespace": "BuecherwurmAPI", - "Documents": [], - "SerializationFormat": "0.2" -} \ No newline at end of file diff --git a/obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.Manifest.cache b/obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.Manifest.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.xml b/obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.xml deleted file mode 100644 index 7b21d22..0000000 --- a/obj/Debug/netcoreapp3.1/staticwebassets/BuecherwurmAPI.StaticWebAssets.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file