diff --git a/Services/PeriodExamService.cs b/Services/PeriodExamService.cs
index 8f29b24..8fdd2b9 100644
--- a/Services/PeriodExamService.cs
+++ b/Services/PeriodExamService.cs
@@ -821,23 +821,23 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
for (int row = 2; row <= rowCount; row++)
{
System.Diagnostics.Debug.WriteLine(worksheet);
- if (worksheet.Cells[row, 1].Value != null)
+ // if (worksheet.Cells[row, 2].Value != null)
+ // {
+ list.Add(new RequestImportSeat
{
- list.Add(new RequestImportSeat
- {
- Number = worksheet.Cells[row, 1].Value != null ? worksheet.Cells[row, 1].Value.ToString() : null,
- CitizenId = worksheet.Cells[row, 2].Value != null ? worksheet.Cells[row, 2].Value.ToString() : null,
- ExamIdenNumber = worksheet.Cells[row, 3].Value != null ? worksheet.Cells[row, 3].Value.ToString() : null,
- SeatNumber = worksheet.Cells[row, 4].Value != null ? worksheet.Cells[row, 4].Value.ToString() : null,
- PointTotalB = worksheet.Cells[row, 5].Value != null ? worksheet.Cells[row, 5].Value.ToString() : null,
- PointB = worksheet.Cells[row, 6].Value != null ? worksheet.Cells[row, 6].Value.ToString() : null,
- ResultB = worksheet.Cells[row, 7].Value != null ? worksheet.Cells[row, 7].Value.ToString() : null,
- PointTotalC = worksheet.Cells[row, 8].Value != null ? worksheet.Cells[row, 8].Value.ToString() : null,
- PointC = worksheet.Cells[row, 9].Value != null ? worksheet.Cells[row, 9].Value.ToString() : null,
- ResultC = worksheet.Cells[row, 10].Value != null ? worksheet.Cells[row, 10].Value.ToString() : null,
- Pass = worksheet.Cells[row, 11].Value != null ? (worksheet.Cells[row, 11].Value.ToString()) : null,
- });
- }
+ Number = worksheet.Cells[row, 1].Value != null ? worksheet.Cells[row, 1].Value.ToString() : null,
+ CitizenId = worksheet.Cells[row, 2].Value != null ? worksheet.Cells[row, 2].Value.ToString() : null,
+ ExamIdenNumber = worksheet.Cells[row, 3].Value != null ? worksheet.Cells[row, 3].Value.ToString() : null,
+ SeatNumber = worksheet.Cells[row, 4].Value != null ? worksheet.Cells[row, 4].Value.ToString() : null,
+ PointTotalB = worksheet.Cells[row, 5].Value != null ? worksheet.Cells[row, 5].Value.ToString() : null,
+ PointB = worksheet.Cells[row, 6].Value != null ? worksheet.Cells[row, 6].Value.ToString() : null,
+ ResultB = worksheet.Cells[row, 7].Value != null ? worksheet.Cells[row, 7].Value.ToString() : null,
+ PointTotalC = worksheet.Cells[row, 8].Value != null ? worksheet.Cells[row, 8].Value.ToString() : null,
+ PointC = worksheet.Cells[row, 9].Value != null ? worksheet.Cells[row, 9].Value.ToString() : null,
+ ResultC = worksheet.Cells[row, 10].Value != null ? worksheet.Cells[row, 10].Value.ToString() : null,
+ Pass = worksheet.Cells[row, 11].Value != null ? (worksheet.Cells[row, 11].Value.ToString()) : null,
+ });
+ // }
}
}
}
@@ -1168,7 +1168,6 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
OccupationEmail = c.OccupationEmail,
OccupationTelephone = c.OccupationTelephone,
-
Number = c.Number,
ExamIdenNumber = c.ExamIdenNumber,
SeatNumber = c.SeatNumber,
@@ -1279,7 +1278,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
summarySheet.Cells[row, 22].Value = item.MarryFullName;
summarySheet.Cells[row, 23].Value = item.FatherFullName;
summarySheet.Cells[row, 24].Value = item.MotherFullName;
- summarySheet.Cells[row, 25].Value = GenerateStatusOccupation(item.OccupationType);
+ summarySheet.Cells[row, 25].Value = item.OccupationType == null ? null : GenerateStatusOccupation(item.OccupationType);
summarySheet.Cells[row, 26].Value = item.OccupationPosition;
summarySheet.Cells[row, 27].Value = item.OccupationCompany;
summarySheet.Cells[row, 28].Value = item.OccupationDepartment;
@@ -1336,7 +1335,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
summarySheet.Cells[row, 22].Value = item.MarryFullName;
summarySheet.Cells[row, 23].Value = item.FatherFullName;
summarySheet.Cells[row, 24].Value = item.MotherFullName;
- summarySheet.Cells[row, 25].Value = GenerateStatusOccupation(item.OccupationType);
+ summarySheet.Cells[row, 25].Value = item.OccupationType == null ? null : GenerateStatusOccupation(item.OccupationType);
summarySheet.Cells[row, 26].Value = item.OccupationPosition;
summarySheet.Cells[row, 27].Value = item.OccupationCompany;
summarySheet.Cells[row, 28].Value = item.OccupationDepartment;
@@ -1387,7 +1386,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Services
summarySheet.Cells[row, 22].Value = item.MarryFullName;
summarySheet.Cells[row, 23].Value = item.FatherFullName;
summarySheet.Cells[row, 24].Value = item.MotherFullName;
- summarySheet.Cells[row, 25].Value = GenerateStatusOccupation(item.OccupationType);
+ summarySheet.Cells[row, 25].Value = item.OccupationType == null ? null : GenerateStatusOccupation(item.OccupationType);
summarySheet.Cells[row, 26].Value = item.OccupationPosition;
summarySheet.Cells[row, 27].Value = item.OccupationCompany;
summarySheet.Cells[row, 28].Value = item.OccupationDepartment;
diff --git a/appsettings.Development.json b/appsettings.Development.json
index 8185702..3a14518 100644
--- a/appsettings.Development.json
+++ b/appsettings.Development.json
@@ -15,8 +15,9 @@
"ConnectionStrings": {
"MongoConnection": "mongodb://127.0.0.1:27017",
"DefaultConnection": "server=127.0.0.1;user=root;password=P@ssw0rd;port=3308;database=bma_ehr_exam;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;",
+ // "DefaultConnection": "server=192.168.1.9;user=root;password=adminVM123;port=3308;database=bma_ehr_exam;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;",
"MetadataConnection": "server=127.0.0.1;user=root;password=P@ssw0rd;port=3308;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
- // "MetadataConnection": "server=192.168.1.9;user=root;password=adminVM123;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
+ // "MetadataConnection": "server=192.168.1.9;user=root;password=adminVM123;port=3308;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
},
"Jwt": {
"Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI",
diff --git a/bin/Debug/net7.0/appsettings.Development.json b/bin/Debug/net7.0/appsettings.Development.json
index 8185702..3a14518 100644
--- a/bin/Debug/net7.0/appsettings.Development.json
+++ b/bin/Debug/net7.0/appsettings.Development.json
@@ -15,8 +15,9 @@
"ConnectionStrings": {
"MongoConnection": "mongodb://127.0.0.1:27017",
"DefaultConnection": "server=127.0.0.1;user=root;password=P@ssw0rd;port=3308;database=bma_ehr_exam;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;",
+ // "DefaultConnection": "server=192.168.1.9;user=root;password=adminVM123;port=3308;database=bma_ehr_exam;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;",
"MetadataConnection": "server=127.0.0.1;user=root;password=P@ssw0rd;port=3308;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
- // "MetadataConnection": "server=192.168.1.9;user=root;password=adminVM123;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
+ // "MetadataConnection": "server=192.168.1.9;user=root;password=adminVM123;port=3308;database=bma_ehr;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;"
},
"Jwt": {
"Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI",
diff --git a/obj/Debug/net7.0/project.razor.json b/obj/Debug/net7.0/project.razor.json
index 3283027..df7a7cd 100644
--- a/obj/Debug/net7.0/project.razor.json
+++ b/obj/Debug/net7.0/project.razor.json
@@ -13,11 +13,11 @@
"ProjectWorkspaceState": {
"TagHelpers": [
{
- "HashCode": 292210362,
+ "HashCode": 1948466624,
"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 ",
+ "Documentation": "\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -29,7 +29,7 @@
"Kind": "Components.Component",
"Name": "NotAuthorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotAuthorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -40,7 +40,7 @@
"Kind": "Components.Component",
"Name": "Authorizing",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorizing",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -51,7 +51,7 @@
"Kind": "Components.Component",
"Name": "Resource",
"TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Documentation": "\r\n \r\n The resource to which access is being controlled.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Resource",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -62,7 +62,7 @@
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
"IsEditorRequired": true,
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -72,7 +72,7 @@
"Kind": "Components.Component",
"Name": "DefaultLayout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DefaultLayout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -90,18 +90,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
+ "Common.TypeNameIdentifier": "AuthorizeRouteView",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Common.TypeNameIdentifier": "AuthorizeRouteView"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -153327394,
+ "HashCode": 129105607,
"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 ",
+ "Documentation": "\r\n \r\n Combines the behaviors of and ,\r\n so that it displays the page matching the specified route but only if the user\r\n is authorized to see it.\r\n \r\n Additionally, this component supplies a cascading parameter of type ,\r\n which makes the user's current authentication state available to descendants.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -113,7 +113,7 @@
"Kind": "Components.Component",
"Name": "NotAuthorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotAuthorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -124,7 +124,7 @@
"Kind": "Components.Component",
"Name": "Authorizing",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorizing",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -135,7 +135,7 @@
"Kind": "Components.Component",
"Name": "Resource",
"TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Documentation": "\r\n \r\n The resource to which access is being controlled.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Resource",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -146,7 +146,7 @@
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
"IsEditorRequired": true,
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -156,7 +156,7 @@
"Kind": "Components.Component",
"Name": "DefaultLayout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DefaultLayout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -174,19 +174,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1932143303,
+ "HashCode": -349687187,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -207,19 +207,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1962478708,
+ "HashCode": 1416168631,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -240,20 +240,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeRouteView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1258049263,
+ "HashCode": -1353497439,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -262,19 +262,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1547028289,
+ "HashCode": -1036865627,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -283,20 +283,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeRouteView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1433265051,
+ "HashCode": -677994693,
"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 ",
+ "Documentation": "\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -308,7 +308,7 @@
"Kind": "Components.Component",
"Name": "Policy",
"TypeName": "System.String",
- "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
+ "Documentation": "\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Policy",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -318,7 +318,7 @@
"Kind": "Components.Component",
"Name": "Roles",
"TypeName": "System.String",
- "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ",
+ "Documentation": "\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Roles",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -328,7 +328,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -339,7 +339,7 @@
"Kind": "Components.Component",
"Name": "NotAuthorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotAuthorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -350,7 +350,7 @@
"Kind": "Components.Component",
"Name": "Authorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -361,7 +361,7 @@
"Kind": "Components.Component",
"Name": "Authorizing",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorizing",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -372,7 +372,7 @@
"Kind": "Components.Component",
"Name": "Resource",
"TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Documentation": "\r\n \r\n The resource to which access is being controlled.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Resource",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -390,18 +390,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
+ "Common.TypeNameIdentifier": "AuthorizeView",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Common.TypeNameIdentifier": "AuthorizeView"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1307198056,
+ "HashCode": -862999843,
"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 ",
+ "Documentation": "\r\n \r\n Displays differing content depending on the user's authorization status.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -413,7 +413,7 @@
"Kind": "Components.Component",
"Name": "Policy",
"TypeName": "System.String",
- "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
+ "Documentation": "\r\n \r\n The policy name that determines whether the content can be displayed.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Policy",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -423,7 +423,7 @@
"Kind": "Components.Component",
"Name": "Roles",
"TypeName": "System.String",
- "Documentation": "\n \n A comma delimited list of roles that are allowed to display the content.\n \n ",
+ "Documentation": "\r\n \r\n A comma delimited list of roles that are allowed to display the content.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Roles",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -433,7 +433,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -444,7 +444,7 @@
"Kind": "Components.Component",
"Name": "NotAuthorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed if the user is not authorized.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotAuthorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -455,7 +455,7 @@
"Kind": "Components.Component",
"Name": "Authorized",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorized",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -466,7 +466,7 @@
"Kind": "Components.Component",
"Name": "Authorizing",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content that will be displayed while asynchronous authorization is in progress.\n \n ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Authorizing",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -477,7 +477,7 @@
"Kind": "Components.Component",
"Name": "Resource",
"TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
+ "Documentation": "\r\n \r\n The resource to which access is being controlled.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Resource",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -495,19 +495,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1908620822,
+ "HashCode": -1488502163,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -528,19 +528,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1881628980,
+ "HashCode": -418003606,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -561,20 +561,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 446351058,
+ "HashCode": -412114772,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -595,19 +595,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 157742223,
+ "HashCode": 242270865,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is not authorized.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -628,20 +628,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1733849291,
+ "HashCode": -727525443,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -662,19 +662,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1607603768,
+ "HashCode": 678240825,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed if the user is authorized.\r\n If you specify a value for this parameter, do not also specify a value for .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -695,20 +695,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1061956025,
+ "HashCode": -1461301081,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -717,19 +717,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -2017857560,
+ "HashCode": 1616588660,
"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 ",
+ "Documentation": "\r\n \r\n The content that will be displayed while asynchronous authorization is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -738,16 +738,16 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "AuthorizeView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1101142779,
+ "HashCode": -34278366,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -762,7 +762,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "Documentation": "\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -771,14 +771,14 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
+ "Common.TypeNameIdentifier": "CascadingAuthenticationState",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Common.TypeNameIdentifier": "CascadingAuthenticationState"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1600608505,
+ "HashCode": -1224660996,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -793,7 +793,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the authentication state should be provided.\n \n ",
+ "Documentation": "\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -802,19 +802,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1601196743,
+ "HashCode": -734313352,
"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 ",
+ "Documentation": "\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -823,19 +823,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1117999337,
+ "HashCode": 66629654,
"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 ",
+ "Documentation": "\r\n \r\n The content to which the authentication state should be provided.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -844,20 +844,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Common.TypeNameIdentifier": "CascadingAuthenticationState",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1817918621,
+ "HashCode": -226904238,
"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 ",
+ "Documentation": "\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -880,7 +880,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "Documentation": "\r\n \r\n The content to which the value should be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -891,7 +891,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "Documentation": "\n \n The value to be provided.\n \n ",
+ "Documentation": "\r\n \r\n The value to be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -902,7 +902,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -912,7 +912,7 @@
"Kind": "Components.Component",
"Name": "IsFixed",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "IsFixed",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -920,19 +920,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "CascadingValue",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1800130624,
+ "HashCode": 569465172,
"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 ",
+ "Documentation": "\r\n \r\n A component that provides a cascading value to all descendant components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -955,7 +955,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the value should be provided.\n \n ",
+ "Documentation": "\r\n \r\n The content to which the value should be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -966,7 +966,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "Documentation": "\n \n The value to be provided.\n \n ",
+ "Documentation": "\r\n \r\n The value to be provided.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -977,7 +977,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Optionally gives a name to the provided value. Descendant components\r\n will be able to receive the value by specifying this name.\r\n \r\n If no name is specified, then descendant components will receive the\r\n value based the type of value they are requesting.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -987,7 +987,7 @@
"Kind": "Components.Component",
"Name": "IsFixed",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n If true, indicates that will not change. This is a\r\n performance optimization that allows the framework to skip setting up\r\n change notifications. Set this flag only if you will not change\r\n during the component's lifetime.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "IsFixed",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -995,20 +995,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "CascadingValue",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1674649375,
+ "HashCode": -1821759516,
"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 ",
+ "Documentation": "\r\n \r\n The content to which the value should be provided.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1017,19 +1017,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "CascadingValue",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -519547825,
+ "HashCode": -629306447,
"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 ",
+ "Documentation": "\r\n \r\n The content to which the value should be provided.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1038,20 +1038,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "CascadingValue",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -896602225,
+ "HashCode": 1187483013,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ",
+ "Documentation": "\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1064,7 +1064,7 @@
"Name": "Type",
"TypeName": "System.Type",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Type",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1074,7 +1074,7 @@
"Kind": "Components.Component",
"Name": "Parameters",
"TypeName": "System.Collections.Generic.IDictionary",
- "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Parameters",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
@@ -1082,18 +1082,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent",
+ "Common.TypeNameIdentifier": "DynamicComponent",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Common.TypeNameIdentifier": "DynamicComponent"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -129359181,
+ "HashCode": 719647373,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n A component that renders another component dynamically according to its\n parameter.\n \n ",
+ "Documentation": "\r\n \r\n A component that renders another component dynamically according to its\r\n parameter.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1106,7 +1106,7 @@
"Name": "Type",
"TypeName": "System.Type",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the type of the component to be rendered. The supplied type must\n implement .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the type of the component to be rendered. The supplied type must\r\n implement .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Type",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1116,7 +1116,7 @@
"Kind": "Components.Component",
"Name": "Parameters",
"TypeName": "System.Collections.Generic.IDictionary",
- "Documentation": "\n \n Gets or sets a dictionary of parameters to be passed to the component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a dictionary of parameters to be passed to the component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Parameters",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
@@ -1124,19 +1124,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "DynamicComponent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1746808839,
+ "HashCode": -971191546,
"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 ",
+ "Documentation": "\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1148,7 +1148,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1159,7 +1159,7 @@
"Kind": "Components.Component",
"Name": "Layout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Layout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1167,18 +1167,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView",
+ "Common.TypeNameIdentifier": "LayoutView",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Common.TypeNameIdentifier": "LayoutView"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 160515519,
+ "HashCode": -1954327642,
"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 ",
+ "Documentation": "\r\n \r\n Displays the specified content inside the specified layout and any further\r\n nested layouts.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1190,7 +1190,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1201,7 +1201,7 @@
"Kind": "Components.Component",
"Name": "Layout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of the layout in which to display the content.\r\n The type must implement and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Layout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1209,19 +1209,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "LayoutView",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1364192399,
+ "HashCode": -1809488885,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1230,19 +1230,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "LayoutView",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 211685212,
+ "HashCode": 532544385,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1251,20 +1251,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "LayoutView",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1516596144,
+ "HashCode": -1851926047,
"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 ",
+ "Documentation": "\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1277,7 +1277,7 @@
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
"IsEditorRequired": true,
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -1287,7 +1287,7 @@
"Kind": "Components.Component",
"Name": "DefaultLayout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DefaultLayout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1295,18 +1295,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.RouteView",
+ "Common.TypeNameIdentifier": "RouteView",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Common.TypeNameIdentifier": "RouteView"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1668890626,
+ "HashCode": -1721455476,
"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 ",
+ "Documentation": "\r\n \r\n Displays the specified page component, rendering it inside its layout\r\n and any further nested layouts.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1319,7 +1319,7 @@
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
"IsEditorRequired": true,
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This determines the page that will be\r\n displayed and the parameter values that will be supplied to the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -1329,7 +1329,7 @@
"Kind": "Components.Component",
"Name": "DefaultLayout",
"TypeName": "System.Type",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the type of a layout to be used if the page does not\r\n declare any layout. If specified, the type must implement \r\n and accept a parameter named .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DefaultLayout",
"Common.GloballyQualifiedTypeName": "global::System.Type"
@@ -1337,19 +1337,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.RouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
"Common.TypeNameIdentifier": "RouteView",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 368644172,
+ "HashCode": 538082688,
"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 ",
+ "Documentation": "\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1362,7 +1362,7 @@
"Name": "AppAssembly",
"TypeName": "System.Reflection.Assembly",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AppAssembly",
"Common.GloballyQualifiedTypeName": "global::System.Reflection.Assembly"
@@ -1372,7 +1372,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAssemblies",
"TypeName": "System.Collections.Generic.IEnumerable",
- "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAssemblies",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable"
@@ -1383,7 +1383,7 @@
"Name": "NotFound",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotFound",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1395,7 +1395,7 @@
"Name": "Found",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Found",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1406,7 +1406,7 @@
"Kind": "Components.Component",
"Name": "Navigating",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ",
+ "Documentation": "\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Navigating",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1417,7 +1417,7 @@
"Kind": "Components.Component",
"Name": "OnNavigateAsync",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnNavigateAsync",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1428,7 +1428,7 @@
"Kind": "Components.Component",
"Name": "PreferExactMatches",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "PreferExactMatches",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -1446,18 +1446,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router",
+ "Common.TypeNameIdentifier": "Router",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Common.TypeNameIdentifier": "Router"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 414743533,
+ "HashCode": 20056972,
"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 ",
+ "Documentation": "\r\n \r\n A component that supplies route data corresponding to the current navigation state.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1470,7 +1470,7 @@
"Name": "AppAssembly",
"TypeName": "System.Reflection.Assembly",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the assembly that should be searched for components matching the URI.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the assembly that should be searched for components matching the URI.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AppAssembly",
"Common.GloballyQualifiedTypeName": "global::System.Reflection.Assembly"
@@ -1480,7 +1480,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAssemblies",
"TypeName": "System.Collections.Generic.IEnumerable",
- "Documentation": "\n \n Gets or sets a collection of additional assemblies that should be searched for components\n that can match URIs.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional assemblies that should be searched for components\r\n that can match URIs.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAssemblies",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable"
@@ -1491,7 +1491,7 @@
"Name": "NotFound",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "NotFound",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1503,7 +1503,7 @@
"Name": "Found",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
"IsEditorRequired": true,
- "Documentation": "\n \n Gets or sets the content to display when a match is found for the requested route.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Found",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1514,7 +1514,7 @@
"Kind": "Components.Component",
"Name": "Navigating",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ",
+ "Documentation": "\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Navigating",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1525,7 +1525,7 @@
"Kind": "Components.Component",
"Name": "OnNavigateAsync",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a handler that should be called before navigating to a new page.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a handler that should be called before navigating to a new page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnNavigateAsync",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1536,7 +1536,7 @@
"Kind": "Components.Component",
"Name": "PreferExactMatches",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets a flag to indicate whether route matching should prefer exact matches\n over wildcards.\n This property is obsolete and configuring it does nothing.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a flag to indicate whether route matching should prefer exact matches\r\n over wildcards.\r\n This property is obsolete and configuring it does nothing.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "PreferExactMatches",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -1554,19 +1554,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -996782354,
+ "HashCode": -897981072,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1575,19 +1575,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1775762273,
+ "HashCode": 26392385,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when no match is found for the requested route.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1596,20 +1596,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1258026229,
+ "HashCode": -2105522279,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1630,19 +1630,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1589809968,
+ "HashCode": 1311524048,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the content to display when a match is found for the requested route.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1663,20 +1663,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -899509980,
+ "HashCode": 201970948,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ",
+ "Documentation": "\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1685,19 +1685,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 628626651,
+ "HashCode": 777430599,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Get or sets the content to display when asynchronous navigation is in progress.\n \n ",
+ "Documentation": "\r\n \r\n Get or sets the content to display when asynchronous navigation is in progress.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1706,20 +1706,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "Router",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 398826759,
+ "HashCode": 1426194740,
"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 ",
+ "Documentation": "\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1727,18 +1727,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
+ "Common.TypeNameIdentifier": "DataAnnotationsValidator",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "DataAnnotationsValidator"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1422939315,
+ "HashCode": -1602008175,
"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 ",
+ "Documentation": "\r\n \r\n Adds Data Annotations validation support to an .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1746,19 +1746,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "DataAnnotationsValidator",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1066709076,
+ "HashCode": -662135412,
"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 ",
+ "Documentation": "\r\n \r\n Renders a form element that cascades an to descendants.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1770,7 +1770,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -1780,7 +1780,7 @@
"Kind": "Components.Component",
"Name": "EditContext",
"TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext",
- "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 ",
+ "Documentation": "\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "EditContext",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.EditContext"
@@ -1790,7 +1790,7 @@
"Kind": "Components.Component",
"Name": "Model",
"TypeName": "System.Object",
- "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 ",
+ "Documentation": "\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Model",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -1800,7 +1800,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "Documentation": "\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1811,7 +1811,7 @@
"Kind": "Components.Component",
"Name": "OnSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "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 ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1822,7 +1822,7 @@
"Kind": "Components.Component",
"Name": "OnValidSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnValidSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1833,7 +1833,7 @@
"Kind": "Components.Component",
"Name": "OnInvalidSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnInvalidSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1852,18 +1852,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm",
+ "Common.TypeNameIdentifier": "EditForm",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "EditForm"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 864912535,
+ "HashCode": 92364982,
"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 ",
+ "Documentation": "\r\n \r\n Renders a form element that cascades an to descendants.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1875,7 +1875,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created form element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created form element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -1885,7 +1885,7 @@
"Kind": "Components.Component",
"Name": "EditContext",
"TypeName": "Microsoft.AspNetCore.Components.Forms.EditContext",
- "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 ",
+ "Documentation": "\r\n \r\n Supplies the edit context explicitly. If using this parameter, do not\r\n also supply , since the model value will be taken\r\n from the property.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "EditContext",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.EditContext"
@@ -1895,7 +1895,7 @@
"Kind": "Components.Component",
"Name": "Model",
"TypeName": "System.Object",
- "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 ",
+ "Documentation": "\r\n \r\n Specifies the top-level model object for the form. An edit context will\r\n be constructed for this model. If using this parameter, do not also supply\r\n a value for .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Model",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -1905,7 +1905,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
+ "Documentation": "\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -1916,7 +1916,7 @@
"Kind": "Components.Component",
"Name": "OnSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "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 ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted.\r\n \r\n If using this parameter, you are responsible for triggering any validation\r\n manually, e.g., by calling .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1927,7 +1927,7 @@
"Kind": "Components.Component",
"Name": "OnValidSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be valid.\n \n ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be valid.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnValidSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1938,7 +1938,7 @@
"Kind": "Components.Component",
"Name": "OnInvalidSubmit",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n A callback that will be invoked when the form is submitted and the\n is determined to be invalid.\n \n ",
+ "Documentation": "\r\n \r\n A callback that will be invoked when the form is submitted and the\r\n is determined to be invalid.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnInvalidSubmit",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -1957,19 +1957,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "EditForm",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 271676180,
+ "HashCode": -516109021,
"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 ",
+ "Documentation": "\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -1990,19 +1990,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "EditForm",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1156677393,
+ "HashCode": 1947571488,
"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 ",
+ "Documentation": "\r\n \r\n Specifies the content to be rendered inside this .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2023,20 +2023,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "EditForm",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -2104737296,
+ "HashCode": 1029474870,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2048,7 +2048,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2058,7 +2058,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -2068,7 +2068,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -2079,7 +2079,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -2089,7 +2089,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2097,18 +2097,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
+ "Common.TypeNameIdentifier": "InputCheckbox",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "InputCheckbox"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1086073172,
+ "HashCode": 1746334923,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2120,7 +2120,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2130,7 +2130,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -2140,7 +2140,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -2151,7 +2151,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -2161,7 +2161,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2169,19 +2169,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputCheckbox",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 417632445,
+ "HashCode": -1831485384,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2205,7 +2205,7 @@
"Name": "Type",
"TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType",
"IsEnum": true,
- "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Type",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.InputDateType"
@@ -2215,7 +2215,7 @@
"Kind": "Components.Component",
"Name": "ParsingErrorMessage",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ParsingErrorMessage",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2225,7 +2225,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2235,7 +2235,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2246,10 +2246,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2258,7 +2258,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -2269,7 +2269,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2277,19 +2277,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputDate",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 804571159,
+ "HashCode": 430410867,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing date values.\r\n Supported types are and .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2313,7 +2313,7 @@
"Name": "Type",
"TypeName": "Microsoft.AspNetCore.Components.Forms.InputDateType",
"IsEnum": true,
- "Documentation": "\n \n Gets or sets the type of HTML input to be rendered.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the type of HTML input to be rendered.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Type",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.InputDateType"
@@ -2323,7 +2323,7 @@
"Kind": "Components.Component",
"Name": "ParsingErrorMessage",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ParsingErrorMessage",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2333,7 +2333,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2343,7 +2343,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2354,10 +2354,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2366,7 +2366,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -2377,7 +2377,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2385,20 +2385,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputDate",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 183100529,
+ "HashCode": -1258106048,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ",
+ "Documentation": "\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2410,7 +2410,7 @@
"Kind": "Components.Component",
"Name": "OnChange",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnChange",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -2421,7 +2421,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
@@ -2429,18 +2429,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile",
+ "Common.TypeNameIdentifier": "InputFile",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "InputFile"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 490367020,
+ "HashCode": -1503134157,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A component that wraps the HTML file input element and supplies a for each file's contents.\n \n ",
+ "Documentation": "\r\n \r\n A component that wraps the HTML file input element and supplies a for each file's contents.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2452,7 +2452,7 @@
"Kind": "Components.Component",
"Name": "OnChange",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets the event callback that will be invoked when the collection of selected files changes.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the event callback that will be invoked when the collection of selected files changes.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnChange",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -2463,7 +2463,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
@@ -2471,19 +2471,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputFile",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -273968873,
+ "HashCode": 524802988,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2506,7 +2506,7 @@
"Kind": "Components.Component",
"Name": "ParsingErrorMessage",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ParsingErrorMessage",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2516,7 +2516,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2526,7 +2526,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2537,10 +2537,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2549,7 +2549,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -2560,7 +2560,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2568,19 +2568,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputNumber",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -742158515,
+ "HashCode": -1948460364,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing numeric values.\r\n Supported numeric types are , , , , , .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2603,7 +2603,7 @@
"Kind": "Components.Component",
"Name": "ParsingErrorMessage",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the error message used when displaying an a parsing error.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the error message used when displaying an a parsing error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ParsingErrorMessage",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2613,7 +2613,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2623,7 +2623,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2634,10 +2634,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2646,7 +2646,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -2657,7 +2657,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2665,20 +2665,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputNumber",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 27118142,
+ "HashCode": -568513382,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ",
+ "Documentation": "\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2701,7 +2701,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2711,7 +2711,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "Documentation": "\n \n Gets or sets the value of this input.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the value of this input.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2722,7 +2722,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2730,19 +2730,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadio",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -308584044,
+ "HashCode": 997716530,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n An input component used for selecting a value from a group of choices.\n \n ",
+ "Documentation": "\r\n \r\n An input component used for selecting a value from a group of choices.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2765,7 +2765,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the input element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the input element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2775,7 +2775,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "Documentation": "\n \n Gets or sets the value of this input.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the value of this input.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2786,7 +2786,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the name of the parent input radio group.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2794,20 +2794,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadio",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -32257879,
+ "HashCode": -2023671909,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Groups child components.\n \n ",
+ "Documentation": "\r\n \r\n Groups child components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2830,7 +2830,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -2841,7 +2841,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the group.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the name of the group.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2851,7 +2851,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2861,7 +2861,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2872,10 +2872,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2884,7 +2884,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -2895,7 +2895,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2903,19 +2903,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadioGroup",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -168947208,
+ "HashCode": -1521076379,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Groups child components.\n \n ",
+ "Documentation": "\r\n \r\n Groups child components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -2938,7 +2938,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -2949,7 +2949,7 @@
"Kind": "Components.Component",
"Name": "Name",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the group.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the name of the group.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -2959,7 +2959,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -2969,7 +2969,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -2980,10 +2980,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -2992,7 +2992,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -3003,7 +3003,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3011,20 +3011,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadioGroup",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1244217250,
+ "HashCode": -1776982472,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3033,19 +3033,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadioGroup",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1716099282,
+ "HashCode": 1628170456,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the .\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3054,20 +3054,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputRadioGroup",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -391637483,
+ "HashCode": 29116075,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A dropdown selection component.\n \n ",
+ "Documentation": "\r\n \r\n A dropdown selection component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3090,7 +3090,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -3101,7 +3101,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3111,7 +3111,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -3122,10 +3122,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -3134,7 +3134,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -3145,7 +3145,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3153,19 +3153,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputSelect",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1514121372,
+ "HashCode": -1198747460,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A dropdown selection component.\n \n ",
+ "Documentation": "\r\n \r\n A dropdown selection component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3188,7 +3188,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content to be rendering inside the select element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -3199,7 +3199,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3209,7 +3209,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "TValue",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "TValue",
@@ -3220,10 +3220,10 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
+ "Common.PropertyName": "ValueChanged",
"Components.EventCallback": "True",
"Components.GenericTyped": "True"
}
@@ -3232,7 +3232,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -3243,7 +3243,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3251,20 +3251,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputSelect",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 213036461,
+ "HashCode": -443669207,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3273,19 +3273,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputSelect",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -385654438,
+ "HashCode": 943767708,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the child content to be rendering inside the select element.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3294,20 +3294,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputSelect",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -740827488,
+ "HashCode": 1691326441,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3319,7 +3319,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3329,7 +3329,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3339,7 +3339,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3350,7 +3350,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -3360,7 +3360,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3368,18 +3368,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
+ "Common.TypeNameIdentifier": "InputText",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "InputText"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1638814664,
+ "HashCode": -878589980,
"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 ",
+ "Documentation": "\r\n \r\n An input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3391,7 +3391,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3401,7 +3401,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3411,7 +3411,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3422,7 +3422,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -3432,7 +3432,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3440,19 +3440,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputText",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 253220698,
+ "HashCode": -1771147120,
"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 ",
+ "Documentation": "\r\n \r\n A multiline input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3464,7 +3464,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3474,7 +3474,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3484,7 +3484,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3495,7 +3495,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -3505,7 +3505,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3513,18 +3513,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
+ "Common.TypeNameIdentifier": "InputTextArea",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "InputTextArea"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 56219071,
+ "HashCode": -1933371976,
"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 ",
+ "Documentation": "\r\n \r\n A multiline input component for editing values.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3536,7 +3536,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3546,7 +3546,7 @@
"Kind": "Components.Component",
"Name": "Value",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the value of the input. This should be used with two-way binding.\r\n \r\n \r\n @bind-Value=\"model.PropertyName\"\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Value",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3556,7 +3556,7 @@
"Kind": "Components.Component",
"Name": "ValueChanged",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback that updates the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback that updates the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueChanged",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3567,7 +3567,7 @@
"Kind": "Components.Component",
"Name": "ValueExpression",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Gets or sets an expression that identifies the bound value.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets an expression that identifies the bound value.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ValueExpression",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
@@ -3577,7 +3577,7 @@
"Kind": "Components.Component",
"Name": "DisplayName",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the display name for this field.\n This value is used when generating error messages when the input value fails to parse correctly.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the display name for this field.\r\n This value is used when generating error messages when the input value fails to parse correctly.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "DisplayName",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3585,19 +3585,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "InputTextArea",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -525548298,
+ "HashCode": -686549248,
"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 ",
+ "Documentation": "\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3620,7 +3620,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3630,7 +3630,7 @@
"Kind": "Components.Component",
"Name": "For",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ",
+ "Documentation": "\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "For",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -3639,19 +3639,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "ValidationMessage",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -604837941,
+ "HashCode": -1369095468,
"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 ",
+ "Documentation": "\r\n \r\n Displays a list of validation messages for a specified field within a cascaded .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3674,7 +3674,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created div element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created div element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3684,7 +3684,7 @@
"Kind": "Components.Component",
"Name": "For",
"TypeName": "System.Linq.Expressions.Expression>",
- "Documentation": "\n \n Specifies the field for which validation messages should be displayed.\n \n ",
+ "Documentation": "\r\n \r\n Specifies the field for which validation messages should be displayed.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "For",
"Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
@@ -3693,20 +3693,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "ValidationMessage",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -660577169,
+ "HashCode": -65476578,
"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 ",
+ "Documentation": "\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3718,7 +3718,7 @@
"Kind": "Components.Component",
"Name": "Model",
"TypeName": "System.Object",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Model",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -3728,7 +3728,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3736,18 +3736,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
+ "Common.TypeNameIdentifier": "ValidationSummary",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Common.TypeNameIdentifier": "ValidationSummary"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1348820447,
+ "HashCode": 1529771215,
"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 ",
+ "Documentation": "\r\n \r\n Displays a list of validation messages from a cascaded .\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3759,7 +3759,7 @@
"Kind": "Components.Component",
"Name": "Model",
"TypeName": "System.Object",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the model to produce the list of validation messages for.\r\n When specified, this lists all errors that are associated with the model instance.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Model",
"Common.GloballyQualifiedTypeName": "global::System.Object"
@@ -3769,7 +3769,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be applied to the created ul element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be applied to the created ul element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3777,19 +3777,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
"Common.TypeNameIdentifier": "ValidationSummary",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -589681622,
+ "HashCode": -971426713,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ",
+ "Documentation": "\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3801,7 +3801,7 @@
"Kind": "Components.Component",
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
- "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -3811,7 +3811,7 @@
"Kind": "Components.Component",
"Name": "Selector",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Selector",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3819,18 +3819,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
+ "Common.TypeNameIdentifier": "FocusOnNavigate",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Common.TypeNameIdentifier": "FocusOnNavigate"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 779870243,
+ "HashCode": -2084727503,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n After navigating from one page to another, sets focus to an element\n matching a CSS selector. This can be used to build an accessible\n navigation system compatible with screen readers.\n \n ",
+ "Documentation": "\r\n \r\n After navigating from one page to another, sets focus to an element\r\n matching a CSS selector. This can be used to build an accessible\r\n navigation system compatible with screen readers.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3842,7 +3842,7 @@
"Kind": "Components.Component",
"Name": "RouteData",
"TypeName": "Microsoft.AspNetCore.Components.RouteData",
- "Documentation": "\n \n Gets or sets the route data. This can be obtained from an enclosing\n component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the route data. This can be obtained from an enclosing\r\n component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteData",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
@@ -3852,7 +3852,7 @@
"Kind": "Components.Component",
"Name": "Selector",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a CSS selector describing the element to be focused after\n navigation between pages.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a CSS selector describing the element to be focused after\r\n navigation between pages.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Selector",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3860,19 +3860,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "FocusOnNavigate",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 311914825,
+ "HashCode": 474902434,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A component that can be used to intercept navigation events. \n \n ",
+ "Documentation": "\r\n \r\n A component that can be used to intercept navigation events. \r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3884,7 +3884,7 @@
"Kind": "Components.Component",
"Name": "OnBeforeInternalNavigation",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback to be invoked when an internal navigation event occurs.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback to be invoked when an internal navigation event occurs.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnBeforeInternalNavigation",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3895,7 +3895,7 @@
"Kind": "Components.Component",
"Name": "ConfirmExternalNavigation",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets whether a browser dialog should prompt the user to either confirm or cancel\n external navigations.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets whether a browser dialog should prompt the user to either confirm or cancel\r\n external navigations.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ConfirmExternalNavigation",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -3903,18 +3903,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
+ "Common.TypeNameIdentifier": "NavigationLock",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Common.TypeNameIdentifier": "NavigationLock"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1304262435,
+ "HashCode": 1143158952,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A component that can be used to intercept navigation events. \n \n ",
+ "Documentation": "\r\n \r\n A component that can be used to intercept navigation events. \r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3926,7 +3926,7 @@
"Kind": "Components.Component",
"Name": "OnBeforeInternalNavigation",
"TypeName": "Microsoft.AspNetCore.Components.EventCallback",
- "Documentation": "\n \n Gets or sets a callback to be invoked when an internal navigation event occurs.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a callback to be invoked when an internal navigation event occurs.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OnBeforeInternalNavigation",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
@@ -3937,7 +3937,7 @@
"Kind": "Components.Component",
"Name": "ConfirmExternalNavigation",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets whether a browser dialog should prompt the user to either confirm or cancel\n external navigations.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets whether a browser dialog should prompt the user to either confirm or cancel\r\n external navigations.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ConfirmExternalNavigation",
"Common.GloballyQualifiedTypeName": "global::System.Boolean"
@@ -3945,19 +3945,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "NavigationLock",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 431142845,
+ "HashCode": 1929426948,
"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 ",
+ "Documentation": "\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -3969,7 +3969,7 @@
"Kind": "Components.Component",
"Name": "ActiveClass",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ActiveClass",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -3979,7 +3979,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -3989,7 +3989,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4001,7 +4001,7 @@
"Name": "Match",
"TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch",
"IsEnum": true,
- "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Match",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"
@@ -4009,18 +4009,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink",
+ "Common.TypeNameIdentifier": "NavLink",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Common.TypeNameIdentifier": "NavLink"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1523561037,
+ "HashCode": -2029149338,
"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 ",
+ "Documentation": "\r\n \r\n A component that renders an anchor tag, automatically toggling its 'active'\r\n class based on whether its 'href' matches the current URI.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4032,7 +4032,7 @@
"Kind": "Components.Component",
"Name": "ActiveClass",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets the CSS class name applied to the NavLink when the\r\n current route matches the NavLink href.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ActiveClass",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -4042,7 +4042,7 @@
"Kind": "Components.Component",
"Name": "AdditionalAttributes",
"TypeName": "System.Collections.Generic.IReadOnlyDictionary",
- "Documentation": "\n \n Gets or sets a collection of additional attributes that will be added to the generated\n a element.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a collection of additional attributes that will be added to the generated\r\n a element.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "AdditionalAttributes",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
@@ -4052,7 +4052,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4064,7 +4064,7 @@
"Name": "Match",
"TypeName": "Microsoft.AspNetCore.Components.Routing.NavLinkMatch",
"IsEnum": true,
- "Documentation": "\n \n Gets or sets a value representing the URL matching behavior.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a value representing the URL matching behavior.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Match",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"
@@ -4072,19 +4072,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "NavLink",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1360027968,
+ "HashCode": 634238702,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4093,19 +4093,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "NavLink",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 945208059,
+ "HashCode": -1675411178,
"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 ",
+ "Documentation": "\r\n \r\n Gets or sets the child content of the component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4114,20 +4114,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Common.TypeNameIdentifier": "NavLink",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1468579529,
+ "HashCode": -766430152,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides content to components.\n \n ",
+ "Documentation": "\r\n \r\n Provides content to components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4139,7 +4139,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4148,18 +4148,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent",
+ "Common.TypeNameIdentifier": "HeadContent",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "HeadContent"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -2077180130,
+ "HashCode": 443645947,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides content to components.\n \n ",
+ "Documentation": "\r\n \r\n Provides content to components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4171,7 +4171,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4180,19 +4180,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "HeadContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -752087949,
+ "HashCode": 1503069466,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4201,19 +4201,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "HeadContent",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -270880436,
+ "HashCode": 423546952,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the content to be rendered in instances.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered in instances.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4222,20 +4222,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "HeadContent",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -715493431,
+ "HashCode": -1248791452,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Renders content provided by components.\n \n ",
+ "Documentation": "\r\n \r\n Renders content provided by components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4243,18 +4243,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
+ "Common.TypeNameIdentifier": "HeadOutlet",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "HeadOutlet"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 578960540,
+ "HashCode": -1401142993,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Renders content provided by components.\n \n ",
+ "Documentation": "\r\n \r\n Renders content provided by components.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4262,19 +4262,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "HeadOutlet",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -250114046,
+ "HashCode": 314848402,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ",
+ "Documentation": "\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4286,7 +4286,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4295,18 +4295,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle",
+ "Common.TypeNameIdentifier": "PageTitle",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "PageTitle"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -130969789,
+ "HashCode": 33026353,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Enables rendering an HTML <title> to a component.\n \n ",
+ "Documentation": "\r\n \r\n Enables rendering an HTML <title> to a component.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4318,7 +4318,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4327,19 +4327,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "PageTitle",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -103446194,
+ "HashCode": -1892027129,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4348,19 +4348,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "PageTitle",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 155099157,
+ "HashCode": -1306618301,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the content to be rendered as the document title.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the content to be rendered as the document title.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4369,20 +4369,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "PageTitle",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -625925608,
+ "HashCode": -553211847,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Captures errors thrown from its child content.\n \n ",
+ "Documentation": "\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4394,7 +4394,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to be displayed when there is no error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4405,7 +4405,7 @@
"Kind": "Components.Component",
"Name": "ErrorContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to be displayed when there is an error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ErrorContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4416,7 +4416,7 @@
"Kind": "Components.Component",
"Name": "MaximumErrorCount",
"TypeName": "System.Int32",
- "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ",
+ "Documentation": "\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "MaximumErrorCount",
"Common.GloballyQualifiedTypeName": "global::System.Int32"
@@ -4434,18 +4434,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
+ "Common.TypeNameIdentifier": "ErrorBoundary",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "ErrorBoundary"
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -1786484466,
+ "HashCode": -821986069,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Captures errors thrown from its child content.\n \n ",
+ "Documentation": "\r\n \r\n Captures errors thrown from its child content.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4457,7 +4457,7 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to be displayed when there is no error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4468,7 +4468,7 @@
"Kind": "Components.Component",
"Name": "ErrorContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to be displayed when there is an error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ErrorContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4479,7 +4479,7 @@
"Kind": "Components.Component",
"Name": "MaximumErrorCount",
"TypeName": "System.Int32",
- "Documentation": "\n \n The maximum number of errors that can be handled. If more errors are received,\n they will be treated as fatal. Calling resets the count.\n \n ",
+ "Documentation": "\r\n \r\n The maximum number of errors that can be handled. If more errors are received,\r\n they will be treated as fatal. Calling resets the count.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "MaximumErrorCount",
"Common.GloballyQualifiedTypeName": "global::System.Int32"
@@ -4497,19 +4497,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "ErrorBoundary",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 482998866,
+ "HashCode": 1768448694,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n The content to be displayed when there is no error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4518,19 +4518,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "ErrorBoundary",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1116541158,
+ "HashCode": -1993890716,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n The content to be displayed when there is no error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is no error.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4539,20 +4539,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "ErrorBoundary",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 308478274,
+ "HashCode": 706704975,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n The content to be displayed when there is an error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4573,19 +4573,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "ErrorBoundary",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -8823183,
+ "HashCode": -1562466611,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n The content to be displayed when there is an error.\n \n ",
+ "Documentation": "\r\n \r\n The content to be displayed when there is an error.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4606,20 +4606,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Common.TypeNameIdentifier": "ErrorBoundary",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -741580332,
+ "HashCode": 1377304620,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ",
+ "Documentation": "\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4642,10 +4642,10 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Common.PropertyName": "ChildContent",
"Components.ChildContent": "True",
"Components.GenericTyped": "True"
}
@@ -4654,10 +4654,10 @@
"Kind": "Components.Component",
"Name": "ItemContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ItemContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Common.PropertyName": "ItemContent",
"Components.ChildContent": "True",
"Components.GenericTyped": "True"
}
@@ -4666,7 +4666,7 @@
"Kind": "Components.Component",
"Name": "Placeholder",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Placeholder",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4677,7 +4677,7 @@
"Kind": "Components.Component",
"Name": "ItemSize",
"TypeName": "System.Single",
- "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ",
+ "Documentation": "\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ItemSize",
"Common.GloballyQualifiedTypeName": "global::System.Single"
@@ -4687,20 +4687,20 @@
"Kind": "Components.Component",
"Name": "ItemsProvider",
"TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
- "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ItemsProvider",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
+ "Common.PropertyName": "ItemsProvider",
"Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "True",
- "Components.GenericTyped": "True"
+ "Components.GenericTyped": "True",
+ "Components.IsDelegateAwaitableResult": "True"
}
},
{
"Kind": "Components.Component",
"Name": "Items",
"TypeName": "System.Collections.Generic.ICollection",
- "Documentation": "\n \n Gets or sets the fixed item source.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Items",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.ICollection",
@@ -4711,7 +4711,7 @@
"Kind": "Components.Component",
"Name": "OverscanCount",
"TypeName": "System.Int32",
- "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OverscanCount",
"Common.GloballyQualifiedTypeName": "global::System.Int32"
@@ -4721,7 +4721,7 @@
"Kind": "Components.Component",
"Name": "SpacerElement",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the tag name of the HTML element that will be used as the virtualization spacer.\n One such element will be rendered before the visible items, and one more after them, using\n an explicit \"height\" style to control the scroll range.\n \n The default value is \"div\". If you are placing the instance inside\n an element that requires a specific child tag name, consider setting that here. For example when\n rendering inside a \"tbody\", consider setting to the value \"tr\".\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the tag name of the HTML element that will be used as the virtualization spacer.\r\n One such element will be rendered before the visible items, and one more after them, using\r\n an explicit \"height\" style to control the scroll range.\r\n \r\n The default value is \"div\". If you are placing the instance inside\r\n an element that requires a specific child tag name, consider setting that here. For example when\r\n rendering inside a \"tbody\", consider setting to the value \"tr\".\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "SpacerElement",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -4739,19 +4739,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
- "Components.GenericTyped": "True"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
+ "Components.GenericTyped": "True",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": -156797342,
+ "HashCode": 866163384,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides functionality for rendering a virtualized list of items.\n \n The context type for the items being rendered.\n ",
+ "Documentation": "\r\n \r\n Provides functionality for rendering a virtualized list of items.\r\n \r\n The context type for the items being rendered.\r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4774,10 +4774,10 @@
"Kind": "Components.Component",
"Name": "ChildContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ChildContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Common.PropertyName": "ChildContent",
"Components.ChildContent": "True",
"Components.GenericTyped": "True"
}
@@ -4786,10 +4786,10 @@
"Kind": "Components.Component",
"Name": "ItemContent",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ItemContent",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
+ "Common.PropertyName": "ItemContent",
"Components.ChildContent": "True",
"Components.GenericTyped": "True"
}
@@ -4798,7 +4798,7 @@
"Kind": "Components.Component",
"Name": "Placeholder",
"TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Placeholder",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
@@ -4809,7 +4809,7 @@
"Kind": "Components.Component",
"Name": "ItemSize",
"TypeName": "System.Single",
- "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ",
+ "Documentation": "\r\n \r\n Gets the size of each item in pixels. Defaults to 50px.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ItemSize",
"Common.GloballyQualifiedTypeName": "global::System.Single"
@@ -4819,20 +4819,20 @@
"Kind": "Components.Component",
"Name": "ItemsProvider",
"TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
- "Documentation": "\n \n Gets or sets the function providing items to the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the function providing items to the list.\r\n \r\n ",
"Metadata": {
- "Common.PropertyName": "ItemsProvider",
"Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
+ "Common.PropertyName": "ItemsProvider",
"Components.DelegateSignature": "True",
- "Components.IsDelegateAwaitableResult": "True",
- "Components.GenericTyped": "True"
+ "Components.GenericTyped": "True",
+ "Components.IsDelegateAwaitableResult": "True"
}
},
{
"Kind": "Components.Component",
"Name": "Items",
"TypeName": "System.Collections.Generic.ICollection",
- "Documentation": "\n \n Gets or sets the fixed item source.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the fixed item source.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Items",
"Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.ICollection",
@@ -4843,7 +4843,7 @@
"Kind": "Components.Component",
"Name": "OverscanCount",
"TypeName": "System.Int32",
- "Documentation": "\n \n Gets or sets a value that determines how many additional items will be rendered\n before and after the visible region. This help to reduce the frequency of rendering\n during scrolling. However, higher values mean that more elements will be present\n in the page.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines how many additional items will be rendered\r\n before and after the visible region. This help to reduce the frequency of rendering\r\n during scrolling. However, higher values mean that more elements will be present\r\n in the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "OverscanCount",
"Common.GloballyQualifiedTypeName": "global::System.Int32"
@@ -4853,7 +4853,7 @@
"Kind": "Components.Component",
"Name": "SpacerElement",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the tag name of the HTML element that will be used as the virtualization spacer.\n One such element will be rendered before the visible items, and one more after them, using\n an explicit \"height\" style to control the scroll range.\n \n The default value is \"div\". If you are placing the instance inside\n an element that requires a specific child tag name, consider setting that here. For example when\n rendering inside a \"tbody\", consider setting to the value \"tr\".\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the tag name of the HTML element that will be used as the virtualization spacer.\r\n One such element will be rendered before the visible items, and one more after them, using\r\n an explicit \"height\" style to control the scroll range.\r\n \r\n The default value is \"div\". If you are placing the instance inside\r\n an element that requires a specific child tag name, consider setting that here. For example when\r\n rendering inside a \"tbody\", consider setting to the value \"tr\".\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "SpacerElement",
"Common.GloballyQualifiedTypeName": "global::System.String"
@@ -4871,20 +4871,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.IComponent",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.IComponent"
}
},
{
- "HashCode": 1644863895,
+ "HashCode": 466167359,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4905,19 +4905,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 996420099,
+ "HashCode": 991548088,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4938,20 +4938,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1558623198,
+ "HashCode": -1420892589,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -4972,19 +4972,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1238003243,
+ "HashCode": -1639665589,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the item template for the list.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -5005,20 +5005,20 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 669602358,
+ "HashCode": 2008173372,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -5039,19 +5039,19 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
- "Components.IsSpecialKind": "Components.ChildContent"
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
+ "Components.IsSpecialKind": "Components.ChildContent",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1248973944,
+ "HashCode": -560861522,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Gets or sets the template for items that have not yet been loaded in memory.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the template for items that have not yet been loaded in memory.\r\n \r\n ",
"CaseSensitive": true,
"TagMatchingRules": [
{
@@ -5072,16 +5072,16 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Common.TypeNameIdentifier": "Virtualize",
+ "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
"Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch"
+ "Components.NameMatch": "Components.FullyQualifiedNameMatch",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1602457544,
+ "HashCode": 672694745,
"Kind": "Components.EventHandler",
"Name": "onfocus",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5154,17 +5154,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1710022371,
+ "HashCode": -1322224889,
"Kind": "Components.EventHandler",
"Name": "onblur",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5237,17 +5237,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1590839855,
+ "HashCode": 643065248,
"Kind": "Components.EventHandler",
"Name": "onfocusin",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5320,17 +5320,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -458602164,
+ "HashCode": -325244612,
"Kind": "Components.EventHandler",
"Name": "onfocusout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5403,17 +5403,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.FocusEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1671767513,
+ "HashCode": -1188409328,
"Kind": "Components.EventHandler",
"Name": "onmouseover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5486,17 +5486,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1638921671,
+ "HashCode": 528722342,
"Kind": "Components.EventHandler",
"Name": "onmouseout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5569,17 +5569,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1774619053,
+ "HashCode": 988341563,
"Kind": "Components.EventHandler",
"Name": "onmouseleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5652,17 +5652,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1122477817,
+ "HashCode": 1568460973,
"Kind": "Components.EventHandler",
"Name": "onmouseenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5735,17 +5735,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 238346666,
+ "HashCode": -2084897623,
"Kind": "Components.EventHandler",
"Name": "onmousemove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5818,17 +5818,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -219217759,
+ "HashCode": 1824469523,
"Kind": "Components.EventHandler",
"Name": "onmousedown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5901,17 +5901,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 997637248,
+ "HashCode": -307090162,
"Kind": "Components.EventHandler",
"Name": "onmouseup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5984,17 +5984,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -984797104,
+ "HashCode": 178523362,
"Kind": "Components.EventHandler",
"Name": "onclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6067,17 +6067,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1214474119,
+ "HashCode": -400260545,
"Kind": "Components.EventHandler",
"Name": "ondblclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6150,17 +6150,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1188315002,
+ "HashCode": 2130337100,
"Kind": "Components.EventHandler",
"Name": "onwheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6233,17 +6233,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1482224309,
+ "HashCode": -1998124968,
"Kind": "Components.EventHandler",
"Name": "onmousewheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6316,17 +6316,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.WheelEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -353448377,
+ "HashCode": 335611821,
"Kind": "Components.EventHandler",
"Name": "oncontextmenu",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6399,17 +6399,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.MouseEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 226013132,
+ "HashCode": -1183023599,
"Kind": "Components.EventHandler",
"Name": "ondrag",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6482,17 +6482,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 828014700,
+ "HashCode": -490433936,
"Kind": "Components.EventHandler",
"Name": "ondragend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6565,17 +6565,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 489428052,
+ "HashCode": 658769539,
"Kind": "Components.EventHandler",
"Name": "ondragenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6648,17 +6648,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1780147162,
+ "HashCode": 559750094,
"Kind": "Components.EventHandler",
"Name": "ondragleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6731,17 +6731,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 75008363,
+ "HashCode": 981712839,
"Kind": "Components.EventHandler",
"Name": "ondragover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6814,17 +6814,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -584298441,
+ "HashCode": 351817046,
"Kind": "Components.EventHandler",
"Name": "ondragstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6897,17 +6897,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1194876241,
+ "HashCode": -2141548897,
"Kind": "Components.EventHandler",
"Name": "ondrop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6980,17 +6980,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.DragEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 261083024,
+ "HashCode": -99461789,
"Kind": "Components.EventHandler",
"Name": "onkeydown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7063,17 +7063,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1730626706,
+ "HashCode": 2103836311,
"Kind": "Components.EventHandler",
"Name": "onkeyup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7146,17 +7146,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -953153164,
+ "HashCode": 2028170422,
"Kind": "Components.EventHandler",
"Name": "onkeypress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7229,17 +7229,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.KeyboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 150118720,
+ "HashCode": 695844421,
"Kind": "Components.EventHandler",
"Name": "onchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7312,17 +7312,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1292789247,
+ "HashCode": 2029931986,
"Kind": "Components.EventHandler",
"Name": "oninput",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7395,17 +7395,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.ChangeEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 124857997,
+ "HashCode": -1881407423,
"Kind": "Components.EventHandler",
"Name": "oninvalid",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7478,17 +7478,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1950786718,
+ "HashCode": -933345808,
"Kind": "Components.EventHandler",
"Name": "onreset",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7561,17 +7561,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -561829278,
+ "HashCode": -585620912,
"Kind": "Components.EventHandler",
"Name": "onselect",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7644,17 +7644,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 259954869,
+ "HashCode": -518796599,
"Kind": "Components.EventHandler",
"Name": "onselectstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7727,17 +7727,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1769133787,
+ "HashCode": -164248783,
"Kind": "Components.EventHandler",
"Name": "onselectionchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7810,17 +7810,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1477199690,
+ "HashCode": -1293064832,
"Kind": "Components.EventHandler",
"Name": "onsubmit",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7893,17 +7893,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 886811508,
+ "HashCode": -1609852549,
"Kind": "Components.EventHandler",
"Name": "onbeforecopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7976,17 +7976,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -788311622,
+ "HashCode": -1580380813,
"Kind": "Components.EventHandler",
"Name": "onbeforecut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8059,17 +8059,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -22771012,
+ "HashCode": -1075629909,
"Kind": "Components.EventHandler",
"Name": "onbeforepaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8142,17 +8142,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1972495906,
+ "HashCode": -1894078608,
"Kind": "Components.EventHandler",
"Name": "oncopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8225,17 +8225,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1212525822,
+ "HashCode": 1071490802,
"Kind": "Components.EventHandler",
"Name": "oncut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8308,17 +8308,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1953246023,
+ "HashCode": 69333587,
"Kind": "Components.EventHandler",
"Name": "onpaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8391,17 +8391,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ClipboardEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1060662395,
+ "HashCode": 449032168,
"Kind": "Components.EventHandler",
"Name": "ontouchcancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8474,17 +8474,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 406242239,
+ "HashCode": -1618445003,
"Kind": "Components.EventHandler",
"Name": "ontouchend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8557,17 +8557,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -13523517,
+ "HashCode": -669782468,
"Kind": "Components.EventHandler",
"Name": "ontouchmove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8640,17 +8640,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -773416426,
+ "HashCode": 1029829599,
"Kind": "Components.EventHandler",
"Name": "ontouchstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8723,17 +8723,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1470141702,
+ "HashCode": -684397801,
"Kind": "Components.EventHandler",
"Name": "ontouchenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8806,17 +8806,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -486672139,
+ "HashCode": -331818087,
"Kind": "Components.EventHandler",
"Name": "ontouchleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8889,17 +8889,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.TouchEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1996177185,
+ "HashCode": 1554678210,
"Kind": "Components.EventHandler",
"Name": "ongotpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8972,17 +8972,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1362096552,
+ "HashCode": -1310846388,
"Kind": "Components.EventHandler",
"Name": "onlostpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9055,17 +9055,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1569338220,
+ "HashCode": -1597831189,
"Kind": "Components.EventHandler",
"Name": "onpointercancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9138,17 +9138,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 34992959,
+ "HashCode": 1767017922,
"Kind": "Components.EventHandler",
"Name": "onpointerdown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9221,17 +9221,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -878601615,
+ "HashCode": -336568736,
"Kind": "Components.EventHandler",
"Name": "onpointerenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9304,17 +9304,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 453950101,
+ "HashCode": 401914892,
"Kind": "Components.EventHandler",
"Name": "onpointerleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9387,17 +9387,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -290817750,
+ "HashCode": -1798739070,
"Kind": "Components.EventHandler",
"Name": "onpointermove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9470,17 +9470,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1196208122,
+ "HashCode": -1801913575,
"Kind": "Components.EventHandler",
"Name": "onpointerout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9553,17 +9553,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 458482719,
+ "HashCode": 1758585724,
"Kind": "Components.EventHandler",
"Name": "onpointerover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9636,17 +9636,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -477455132,
+ "HashCode": 1438040560,
"Kind": "Components.EventHandler",
"Name": "onpointerup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9719,17 +9719,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.PointerEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1628381074,
+ "HashCode": 1091590472,
"Kind": "Components.EventHandler",
"Name": "oncanplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9802,17 +9802,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1937832352,
+ "HashCode": -1844023019,
"Kind": "Components.EventHandler",
"Name": "oncanplaythrough",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9885,17 +9885,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1853174072,
+ "HashCode": 1115777405,
"Kind": "Components.EventHandler",
"Name": "oncuechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9968,17 +9968,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1070171306,
+ "HashCode": -313429133,
"Kind": "Components.EventHandler",
"Name": "ondurationchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10051,17 +10051,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 125862381,
+ "HashCode": -1529516013,
"Kind": "Components.EventHandler",
"Name": "onemptied",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10134,17 +10134,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1592446970,
+ "HashCode": -659711168,
"Kind": "Components.EventHandler",
"Name": "onpause",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10217,17 +10217,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1340976560,
+ "HashCode": 1671494698,
"Kind": "Components.EventHandler",
"Name": "onplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10300,17 +10300,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1178043302,
+ "HashCode": -1246696460,
"Kind": "Components.EventHandler",
"Name": "onplaying",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10383,17 +10383,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -732977292,
+ "HashCode": -272331404,
"Kind": "Components.EventHandler",
"Name": "onratechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10466,17 +10466,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -565981739,
+ "HashCode": 436935836,
"Kind": "Components.EventHandler",
"Name": "onseeked",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10549,17 +10549,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -54720927,
+ "HashCode": -2041435853,
"Kind": "Components.EventHandler",
"Name": "onseeking",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10632,17 +10632,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1506046341,
+ "HashCode": -1526252053,
"Kind": "Components.EventHandler",
"Name": "onstalled",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10715,17 +10715,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1081174039,
+ "HashCode": 1754550449,
"Kind": "Components.EventHandler",
"Name": "onstop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10798,17 +10798,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -441700061,
+ "HashCode": 2041465958,
"Kind": "Components.EventHandler",
"Name": "onsuspend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10881,17 +10881,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 551857167,
+ "HashCode": -1388878035,
"Kind": "Components.EventHandler",
"Name": "ontimeupdate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10964,17 +10964,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1883174247,
+ "HashCode": -1547851405,
"Kind": "Components.EventHandler",
"Name": "onvolumechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11047,17 +11047,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1038223278,
+ "HashCode": 865002636,
"Kind": "Components.EventHandler",
"Name": "onwaiting",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11130,17 +11130,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 2090725155,
+ "HashCode": 774113038,
"Kind": "Components.EventHandler",
"Name": "onloadstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11213,17 +11213,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 920399322,
+ "HashCode": -1678665822,
"Kind": "Components.EventHandler",
"Name": "ontimeout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11296,17 +11296,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 2139514913,
+ "HashCode": -236113915,
"Kind": "Components.EventHandler",
"Name": "onabort",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11379,17 +11379,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -421323794,
+ "HashCode": 773180948,
"Kind": "Components.EventHandler",
"Name": "onload",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11462,17 +11462,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1970216217,
+ "HashCode": 705922759,
"Kind": "Components.EventHandler",
"Name": "onloadend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11545,17 +11545,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 257099258,
+ "HashCode": -807111789,
"Kind": "Components.EventHandler",
"Name": "onprogress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11628,17 +11628,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ProgressEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1130926210,
+ "HashCode": -1843518750,
"Kind": "Components.EventHandler",
"Name": "onerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11711,17 +11711,17 @@
}
],
"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",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "Microsoft.AspNetCore.Components.Web.ErrorEventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 218454622,
+ "HashCode": 1991863869,
"Kind": "Components.EventHandler",
"Name": "onactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11794,17 +11794,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 170107236,
+ "HashCode": 1287850745,
"Kind": "Components.EventHandler",
"Name": "onbeforeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11877,17 +11877,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -947223479,
+ "HashCode": 194954731,
"Kind": "Components.EventHandler",
"Name": "onbeforedeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11960,17 +11960,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 2104726999,
+ "HashCode": 1052040933,
"Kind": "Components.EventHandler",
"Name": "ondeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12043,17 +12043,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -716798175,
+ "HashCode": -121306533,
"Kind": "Components.EventHandler",
"Name": "onended",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12126,17 +12126,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -2124147681,
+ "HashCode": 1134492514,
"Kind": "Components.EventHandler",
"Name": "onfullscreenchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12209,17 +12209,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 995808170,
+ "HashCode": 1630169339,
"Kind": "Components.EventHandler",
"Name": "onfullscreenerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12292,17 +12292,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 706507728,
+ "HashCode": 1462154428,
"Kind": "Components.EventHandler",
"Name": "onloadeddata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12375,17 +12375,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1650631233,
+ "HashCode": -2072969622,
"Kind": "Components.EventHandler",
"Name": "onloadedmetadata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12458,17 +12458,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 684216369,
+ "HashCode": -77813519,
"Kind": "Components.EventHandler",
"Name": "onpointerlockchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12541,17 +12541,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1205389549,
+ "HashCode": 1585680648,
"Kind": "Components.EventHandler",
"Name": "onpointerlockerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12624,17 +12624,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -514817029,
+ "HashCode": -1042794913,
"Kind": "Components.EventHandler",
"Name": "onreadystatechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12707,17 +12707,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -287283783,
+ "HashCode": -466190902,
"Kind": "Components.EventHandler",
"Name": "onscroll",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12790,17 +12790,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": 1663846123,
+ "HashCode": -1803219457,
"Kind": "Components.EventHandler",
"Name": "ontoggle",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12873,17 +12873,17 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.EventHandler",
- "Components.EventHandler.EventArgs": "System.EventArgs",
"Common.ClassifyAttributesOnly": "True",
"Common.TypeName": "Microsoft.AspNetCore.Components.Web.EventHandlers",
+ "Common.TypeNameIdentifier": "EventHandlers",
"Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Common.TypeNameIdentifier": "EventHandlers"
+ "Components.EventHandler.EventArgs": "System.EventArgs",
+ "Components.IsSpecialKind": "Components.EventHandler",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -1189110847,
+ "HashCode": -674085109,
"Kind": "Components.Splat",
"Name": "Attributes",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12915,18 +12915,18 @@
}
],
"Metadata": {
- "Runtime.Name": "Components.None",
- "Components.IsSpecialKind": "Components.Splat",
"Common.ClassifyAttributesOnly": "True",
- "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes"
+ "Common.TypeName": "Microsoft.AspNetCore.Components.Attributes",
+ "Components.IsSpecialKind": "Components.Splat",
+ "Runtime.Name": "Components.None"
}
},
{
- "HashCode": -666126728,
+ "HashCode": 299730478,
"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 ",
+ "Documentation": "\r\n \r\n implementation targeting elements containing attributes with URL expected values.\r\n \r\n Resolves URLs starting with '~/' (relative to the application's 'webroot' setting) that are not\r\n targeted by other s. Runs prior to other s to ensure\r\n application-relative URLs are resolved.\r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13232,18 +13232,18 @@
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper",
+ "Common.TypeNameIdentifier": "UrlResolutionTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers",
- "Common.TypeNameIdentifier": "UrlResolutionTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": -570731171,
+ "HashCode": 2069345430,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Documentation": "\n \n implementation targeting <a> elements.\n \n ",
+ "Documentation": "\r\n \r\n implementation targeting <a> elements.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13341,7 +13341,7 @@
"Kind": "ITagHelper",
"Name": "asp-action",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the action method.\n \n \n Must be null if or is non-null.\n \n ",
+ "Documentation": "\r\n \r\n The name of the action method.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Action"
}
@@ -13350,7 +13350,7 @@
"Kind": "ITagHelper",
"Name": "asp-controller",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the controller.\n \n \n Must be null if or is non-null.\n \n ",
+ "Documentation": "\r\n \r\n The name of the controller.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Controller"
}
@@ -13359,7 +13359,7 @@
"Kind": "ITagHelper",
"Name": "asp-area",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the area.\n \n \n Must be null if is non-null.\n \n ",
+ "Documentation": "\r\n \r\n The name of the area.\r\n \r\n \r\n Must be null if is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Area"
}
@@ -13368,7 +13368,7 @@
"Kind": "ITagHelper",
"Name": "asp-page",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page.\n \n \n Must be null if or , \n is non-null.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page.\r\n \r\n \r\n Must be null if or , \r\n is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Page"
}
@@ -13377,7 +13377,7 @@
"Kind": "ITagHelper",
"Name": "asp-page-handler",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page handler.\n \n \n Must be null if or , or \n is non-null.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page handler.\r\n \r\n \r\n Must be null if or , or \r\n is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "PageHandler"
}
@@ -13386,7 +13386,7 @@
"Kind": "ITagHelper",
"Name": "asp-protocol",
"TypeName": "System.String",
- "Documentation": "\n \n The protocol for the URL, such as \"http\" or \"https\".\n \n ",
+ "Documentation": "\r\n \r\n The protocol for the URL, such as \"http\" or \"https\".\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Protocol"
}
@@ -13395,7 +13395,7 @@
"Kind": "ITagHelper",
"Name": "asp-host",
"TypeName": "System.String",
- "Documentation": "\n \n The host name.\n \n ",
+ "Documentation": "\r\n \r\n The host name.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Host"
}
@@ -13404,7 +13404,7 @@
"Kind": "ITagHelper",
"Name": "asp-fragment",
"TypeName": "System.String",
- "Documentation": "\n \n The URL fragment name.\n \n ",
+ "Documentation": "\r\n \r\n The URL fragment name.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Fragment"
}
@@ -13413,7 +13413,7 @@
"Kind": "ITagHelper",
"Name": "asp-route",
"TypeName": "System.String",
- "Documentation": "\n \n Name of the route.\n \n \n Must be null if one of , , \n or is non-null.\n \n ",
+ "Documentation": "\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if one of , , \r\n or is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Route"
}
@@ -13424,25 +13424,25 @@
"TypeName": "System.Collections.Generic.IDictionary",
"IndexerNamePrefix": "asp-route-",
"IndexerTypeName": "System.String",
- "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Documentation": "\r\n \r\n Additional parameters for the route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteValues"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper",
+ "Common.TypeNameIdentifier": "AnchorTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "AnchorTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": -634381377,
+ "HashCode": 1846884711,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Documentation": "\n \n implementation targeting <cache> elements.\n \n ",
+ "Documentation": "\r\n \r\n implementation targeting <cache> elements.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13454,7 +13454,7 @@
"Kind": "ITagHelper",
"Name": "priority",
"TypeName": "Microsoft.Extensions.Caching.Memory.CacheItemPriority?",
- "Documentation": "\n \n Gets or sets the policy for the cache entry.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the policy for the cache entry.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Priority"
}
@@ -13463,7 +13463,7 @@
"Kind": "ITagHelper",
"Name": "vary-by",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryBy"
}
@@ -13472,7 +13472,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-header",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByHeader"
}
@@ -13481,7 +13481,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-query",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByQuery"
}
@@ -13490,7 +13490,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-route",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByRoute"
}
@@ -13499,7 +13499,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-cookie",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByCookie"
}
@@ -13508,7 +13508,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-user",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByUser"
}
@@ -13517,7 +13517,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-culture",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByCulture"
}
@@ -13526,7 +13526,7 @@
"Kind": "ITagHelper",
"Name": "expires-on",
"TypeName": "System.DateTimeOffset?",
- "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresOn"
}
@@ -13535,7 +13535,7 @@
"Kind": "ITagHelper",
"Name": "expires-after",
"TypeName": "System.TimeSpan?",
- "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresAfter"
}
@@ -13544,7 +13544,7 @@
"Kind": "ITagHelper",
"Name": "expires-sliding",
"TypeName": "System.TimeSpan?",
- "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresSliding"
}
@@ -13553,25 +13553,25 @@
"Kind": "ITagHelper",
"Name": "enabled",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Enabled"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper",
+ "Common.TypeNameIdentifier": "CacheTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "CacheTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": 1179472688,
+ "HashCode": 638838960,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Documentation": "\n \n A that renders a Razor component.\n \n ",
+ "Documentation": "\r\n \r\n A that renders a Razor component.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13591,7 +13591,7 @@
"TypeName": "System.Collections.Generic.IDictionary",
"IndexerNamePrefix": "param-",
"IndexerTypeName": "System.Object",
- "Documentation": "\n \n Gets or sets values for component parameters.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets values for component parameters.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Parameters"
}
@@ -13600,7 +13600,7 @@
"Kind": "ITagHelper",
"Name": "type",
"TypeName": "System.Type",
- "Documentation": "\n \n Gets or sets the component type. This value is required.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the component type. This value is required.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ComponentType"
}
@@ -13610,25 +13610,25 @@
"Name": "render-mode",
"TypeName": "Microsoft.AspNetCore.Mvc.Rendering.RenderMode",
"IsEnum": true,
- "Documentation": "\n \n Gets or sets the \n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the \r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RenderMode"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper",
+ "Common.TypeNameIdentifier": "ComponentTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "ComponentTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": -109702384,
+ "HashCode": -78044540,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Documentation": "\n \n implementation targeting <distributed-cache> elements.\n \n ",
+ "Documentation": "\r\n \r\n implementation targeting <distributed-cache> elements.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13645,7 +13645,7 @@
"Kind": "ITagHelper",
"Name": "name",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a unique name to discriminate cached entries.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a unique name to discriminate cached entries.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Name"
}
@@ -13654,7 +13654,7 @@
"Kind": "ITagHelper",
"Name": "vary-by",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryBy"
}
@@ -13663,7 +13663,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-header",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of HTTP request headers to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByHeader"
}
@@ -13672,7 +13672,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-query",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of query parameters to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByQuery"
}
@@ -13681,7 +13681,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-route",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of route data parameters to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByRoute"
}
@@ -13690,7 +13690,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-cookie",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets a comma-delimited set of cookie names to vary the cached result by.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByCookie"
}
@@ -13699,7 +13699,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-user",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by the Identity for the logged in\r\n .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByUser"
}
@@ -13708,7 +13708,7 @@
"Kind": "ITagHelper",
"Name": "vary-by-culture",
"TypeName": "System.Boolean",
- "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 ",
+ "Documentation": "\r\n \r\n Gets or sets a value that determines if the cached result is to be varied by request culture.\r\n \r\n Setting this to true would result in the result to be varied by \r\n and .\r\n \r\n \r\n ",
"Metadata": {
"Common.PropertyName": "VaryByCulture"
}
@@ -13717,7 +13717,7 @@
"Kind": "ITagHelper",
"Name": "expires-on",
"TypeName": "System.DateTimeOffset?",
- "Documentation": "\n \n Gets or sets the exact the cache entry should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the exact the cache entry should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresOn"
}
@@ -13726,7 +13726,7 @@
"Kind": "ITagHelper",
"Name": "expires-after",
"TypeName": "System.TimeSpan?",
- "Documentation": "\n \n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the duration, from the time the cache entry was added, when it should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresAfter"
}
@@ -13735,7 +13735,7 @@
"Kind": "ITagHelper",
"Name": "expires-sliding",
"TypeName": "System.TimeSpan?",
- "Documentation": "\n \n Gets or sets the duration from last access that the cache entry should be evicted.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the duration from last access that the cache entry should be evicted.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "ExpiresSliding"
}
@@ -13744,25 +13744,25 @@
"Kind": "ITagHelper",
"Name": "enabled",
"TypeName": "System.Boolean",
- "Documentation": "\n \n Gets or sets the value which determines if the tag helper is enabled or not.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the value which determines if the tag helper is enabled or not.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Enabled"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper",
+ "Common.TypeNameIdentifier": "DistributedCacheTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "DistributedCacheTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": 1501322994,
+ "HashCode": -479694791,
"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 ",
+ "Documentation": "\r\n \r\n implementation targeting <environment> elements that conditionally renders\r\n content based on the current value of .\r\n If the environment is not listed in the specified or ,\r\n or if it is in , the content will not be rendered.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -13774,7 +13774,7 @@
"Kind": "ITagHelper",
"Name": "names",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Names"
}
@@ -13783,7 +13783,7 @@
"Kind": "ITagHelper",
"Name": "include",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n A comma separated list of environment names in which the content should be rendered.\r\n If the current environment is also in the list, the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Include"
}
@@ -13792,25 +13792,25 @@
"Kind": "ITagHelper",
"Name": "exclude",
"TypeName": "System.String",
- "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 ",
+ "Documentation": "\r\n \r\n A comma separated list of environment names in which the content will not be rendered.\r\n \r\n \r\n The specified environment names are compared case insensitively to the current value of\r\n .\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Exclude"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper",
+ "Common.TypeNameIdentifier": "EnvironmentTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "EnvironmentTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": 579075043,
+ "HashCode": 978683885,
"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 ",
+ "Documentation": "\r\n \r\n implementation targeting <button> elements and <input> elements with\r\n their type attribute set to image or submit.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -14146,7 +14146,7 @@
"Kind": "ITagHelper",
"Name": "asp-action",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the action method.\n \n ",
+ "Documentation": "\r\n \r\n The name of the action method.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Action"
}
@@ -14155,7 +14155,7 @@
"Kind": "ITagHelper",
"Name": "asp-controller",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the controller.\n \n ",
+ "Documentation": "\r\n \r\n The name of the controller.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Controller"
}
@@ -14164,7 +14164,7 @@
"Kind": "ITagHelper",
"Name": "asp-area",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the area.\n \n ",
+ "Documentation": "\r\n \r\n The name of the area.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Area"
}
@@ -14173,7 +14173,7 @@
"Kind": "ITagHelper",
"Name": "asp-page",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Page"
}
@@ -14182,7 +14182,7 @@
"Kind": "ITagHelper",
"Name": "asp-page-handler",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page handler.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page handler.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "PageHandler"
}
@@ -14191,7 +14191,7 @@
"Kind": "ITagHelper",
"Name": "asp-fragment",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the URL fragment.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Fragment"
}
@@ -14200,7 +14200,7 @@
"Kind": "ITagHelper",
"Name": "asp-route",
"TypeName": "System.String",
- "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ",
+ "Documentation": "\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Route"
}
@@ -14211,25 +14211,25 @@
"TypeName": "System.Collections.Generic.IDictionary",
"IndexerNamePrefix": "asp-route-",
"IndexerTypeName": "System.String",
- "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Documentation": "\r\n \r\n Additional parameters for the route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteValues"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper",
+ "Common.TypeNameIdentifier": "FormActionTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "FormActionTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": -1568502317,
+ "HashCode": -1118100438,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Documentation": "\n \n implementation targeting <form> elements.\n \n ",
+ "Documentation": "\r\n \r\n implementation targeting <form> elements.\r\n \r\n ",
"CaseSensitive": false,
"TagMatchingRules": [
{
@@ -14241,7 +14241,7 @@
"Kind": "ITagHelper",
"Name": "asp-action",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the action method.\n \n ",
+ "Documentation": "\r\n \r\n The name of the action method.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Action"
}
@@ -14250,7 +14250,7 @@
"Kind": "ITagHelper",
"Name": "asp-controller",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the controller.\n \n ",
+ "Documentation": "\r\n \r\n The name of the controller.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Controller"
}
@@ -14259,7 +14259,7 @@
"Kind": "ITagHelper",
"Name": "asp-area",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the area.\n \n ",
+ "Documentation": "\r\n \r\n The name of the area.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Area"
}
@@ -14268,7 +14268,7 @@
"Kind": "ITagHelper",
"Name": "asp-page",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Page"
}
@@ -14277,7 +14277,7 @@
"Kind": "ITagHelper",
"Name": "asp-page-handler",
"TypeName": "System.String",
- "Documentation": "\n \n The name of the page handler.\n \n ",
+ "Documentation": "\r\n \r\n The name of the page handler.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "PageHandler"
}
@@ -14286,7 +14286,7 @@
"Kind": "ITagHelper",
"Name": "asp-antiforgery",
"TypeName": "System.Boolean?",
- "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 ",
+ "Documentation": "\r\n \r\n Whether the antiforgery token should be generated.\r\n \r\n Defaults to false if user provides an action attribute\r\n or if the method is ; true otherwise.\r\n ",
"Metadata": {
"Common.PropertyName": "Antiforgery"
}
@@ -14295,7 +14295,7 @@
"Kind": "ITagHelper",
"Name": "asp-fragment",
"TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the URL fragment.\n \n ",
+ "Documentation": "\r\n \r\n Gets or sets the URL fragment.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Fragment"
}
@@ -14304,7 +14304,7 @@
"Kind": "ITagHelper",
"Name": "asp-route",
"TypeName": "System.String",
- "Documentation": "\n \n Name of the route.\n \n \n Must be null if or is non-null.\n \n ",
+ "Documentation": "\r\n \r\n Name of the route.\r\n \r\n \r\n Must be null if or is non-null.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "Route"
}
@@ -14315,25 +14315,25 @@
"TypeName": "System.Collections.Generic.IDictionary",
"IndexerNamePrefix": "asp-route-",
"IndexerTypeName": "System.String",
- "Documentation": "\n \n Additional parameters for the route.\n \n ",
+ "Documentation": "\r\n \r\n Additional parameters for the route.\r\n \r\n ",
"Metadata": {
"Common.PropertyName": "RouteValues"
}
}
],
"Metadata": {
- "Runtime.Name": "ITagHelper",
"Common.TypeName": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper",
+ "Common.TypeNameIdentifier": "FormTagHelper",
"Common.TypeNamespace": "Microsoft.AspNetCore.Mvc.TagHelpers",
- "Common.TypeNameIdentifier": "FormTagHelper"
+ "Runtime.Name": "ITagHelper"
}
},
{
- "HashCode": -155746202,
+ "HashCode": -1741885007,
"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 ",
+ "Documentation": "\r\n \r\n