diff --git a/backend/cli/commands/schedules.py b/backend/cli/commands/schedules.py
index 3b3fbd3..6c7dde1 100644
--- a/backend/cli/commands/schedules.py
+++ b/backend/cli/commands/schedules.py
@@ -558,16 +558,16 @@ def cmd_schedules_decline(cli: "NimbusFlowCLI", args) -> None:
# Clear screen after service selection
print("\033[2J\033[H")
- # Find pending schedules for this service
+ # Find pending OR accepted schedules for this service
all_schedules = cli.schedule_repo.list_all()
- pending_schedules = [
+ available_schedules = [
s for s in all_schedules
- if s.ServiceId == selected_service.ServiceId and s.Status == ScheduleStatus.PENDING.value
+ if s.ServiceId == selected_service.ServiceId and s.Status in [ScheduleStatus.PENDING.value, ScheduleStatus.ACCEPTED.value]
]
- if not pending_schedules:
+ if not available_schedules:
service_type_name = service_type_map.get(selected_service.ServiceTypeId, "Unknown")
- print(f"❌ No pending schedules found for {service_type_name} on {args.date}")
+ print(f"❌ No pending or accepted schedules found for {service_type_name} on {args.date}")
return
# Get member info for display
@@ -578,28 +578,31 @@ def cmd_schedules_decline(cli: "NimbusFlowCLI", args) -> None:
print(f"{TableColors.HEADER}Members scheduled for {service_name} on {args.date}{TableColors.RESET}")
print(f"{TableColors.BORDER}─" * 70 + f"{TableColors.RESET}")
print()
- for i, schedule in enumerate(pending_schedules, 1):
+ for i, schedule in enumerate(available_schedules, 1):
member = member_map.get(schedule.MemberId)
+ status_color = TableColors.SUCCESS if schedule.Status == ScheduleStatus.ACCEPTED.value else TableColors.WARNING
+ status_text = f"{status_color}{schedule.Status.upper()}{TableColors.RESET}"
+
if member:
- print(f" {TableColors.CYAN}{i}.{TableColors.RESET} {member.FirstName} {member.LastName}")
+ print(f" {TableColors.CYAN}{i}.{TableColors.RESET} {member.FirstName} {member.LastName} {TableColors.DIM}({status_text}){TableColors.RESET}")
else:
- print(f" {TableColors.CYAN}{i}.{TableColors.RESET} {TableColors.DIM}Unknown Member (ID: {schedule.MemberId}){TableColors.RESET}")
+ print(f" {TableColors.CYAN}{i}.{TableColors.RESET} {TableColors.DIM}Unknown Member (ID: {schedule.MemberId}) ({status_text}){TableColors.RESET}")
print()
# Let user select member
try:
- print(f"\n{TableColors.INPUT_BOX}┌─ Select member to decline (1-{len(pending_schedules)}) ─┐{TableColors.RESET}")
+ print(f"\n{TableColors.INPUT_BOX}┌─ Select member to decline (1-{len(available_schedules)}) ─┐{TableColors.RESET}")
choice = input(f"{TableColors.INPUT_BOX}└─> {TableColors.RESET}").strip()
if not choice or not choice.isdigit():
print("❌ Invalid selection")
return
member_index = int(choice) - 1
- if member_index < 0 or member_index >= len(pending_schedules):
+ if member_index < 0 or member_index >= len(available_schedules):
print("❌ Invalid selection")
return
- selected_schedule = pending_schedules[member_index]
+ selected_schedule = available_schedules[member_index]
except (KeyboardInterrupt, EOFError):
print("\n🛑 Cancelled")
return
@@ -635,10 +638,6 @@ def cmd_schedules_decline(cli: "NimbusFlowCLI", args) -> None:
print(f"⚠️ Schedule {schedule_to_decline.ScheduleId} is already declined")
return
- if schedule_to_decline.Status == ScheduleStatus.ACCEPTED.value:
- print(f"⚠️ Schedule {schedule_to_decline.ScheduleId} was previously accepted")
- return
-
# Get member and service info for display
member = cli.member_repo.get_by_id(schedule_to_decline.MemberId)
service = cli.service_repo.get_by_id(schedule_to_decline.ServiceId)
@@ -646,19 +645,37 @@ def cmd_schedules_decline(cli: "NimbusFlowCLI", args) -> None:
if service:
service_type = cli.service_type_repo.get_by_id(service.ServiceTypeId)
- # Mark the schedule as declined
- cli.schedule_repo.mark_declined(schedule_to_decline.ScheduleId, decline_reason=decline_reason)
+ # Show what we're about to decline
+ was_accepted = schedule_to_decline.Status == ScheduleStatus.ACCEPTED.value
+ status_text = "accepted" if was_accepted else "pending"
- # Update member's decline timestamp (using service date)
- if service:
- cli.member_repo.set_last_declined(schedule_to_decline.MemberId, str(service.ServiceDate))
-
- print(f"❌ Schedule {schedule_to_decline.ScheduleId} declined successfully!")
if member and service and service_type:
- print(f" Member: {member.FirstName} {member.LastName}")
+ print(f"\n{TableColors.WARNING}About to decline {status_text} schedule:{TableColors.RESET}")
+ print(f" Member: {TableColors.BOLD}{member.FirstName} {member.LastName}{TableColors.RESET}")
print(f" Service: {service_type.TypeName} on {service.ServiceDate}")
- if decline_reason:
- print(f" Reason: {decline_reason}")
+ if decline_reason:
+ print(f" Reason: {decline_reason}")
+
+ # Use the scheduling service to handle decline logic properly
+ try:
+ action, updated_schedule_id = cli.scheduling_service.decline_service_for_user(
+ member_id=schedule_to_decline.MemberId,
+ service_id=schedule_to_decline.ServiceId,
+ reason=decline_reason
+ )
+
+ # Update member's decline timestamp (using service date)
+ if service:
+ cli.member_repo.set_last_declined(schedule_to_decline.MemberId, str(service.ServiceDate))
+
+ print(f"\n{TableColors.SUCCESS}✅ Schedule {updated_schedule_id} declined successfully!{TableColors.RESET}")
+
+ if was_accepted:
+ print(f"{TableColors.WARNING} Note: This was previously accepted - member moved back to scheduling pool{TableColors.RESET}")
+
+ except Exception as e:
+ print(f"{TableColors.ERROR}❌ Failed to decline schedule: {e}{TableColors.RESET}")
+ return
def cmd_schedules_schedule(cli: "NimbusFlowCLI", args) -> None:
@@ -734,6 +751,10 @@ def cmd_schedules_schedule(cli: "NimbusFlowCLI", args) -> None:
print(f"{TableColors.HEADER}Selected Service: {service_type_name} on {service.ServiceDate}{TableColors.RESET}")
+ # Check if we're doing name-based scheduling
+ if hasattr(args, 'member_name') and args.member_name:
+ return _schedule_specific_member(cli, service, service_type_name, args.member_name)
+
# Get classification constraints if not provided
classification_ids = []
if args.classifications:
@@ -848,6 +869,137 @@ def cmd_schedules_schedule(cli: "NimbusFlowCLI", args) -> None:
return
+def _schedule_specific_member(cli: "NimbusFlowCLI", service, service_type_name: str, member_name: str) -> None:
+ """Helper function to schedule a specific member by name."""
+
+ # Search for matching members
+ all_members = cli.member_repo.list_all()
+ search_terms = member_name.lower().split()
+
+ matching_members = []
+ for member in all_members:
+ member_text = f"{member.FirstName} {member.LastName}".lower()
+ # Match if all search terms are found in the member's name
+ if all(term in member_text for term in search_terms):
+ matching_members.append(member)
+
+ if not matching_members:
+ print(f"{TableColors.ERROR}❌ No members found matching '{member_name}'{TableColors.RESET}")
+ return
+
+ # If multiple matches, let user select
+ selected_member = None
+ if len(matching_members) == 1:
+ selected_member = matching_members[0]
+ print(f"\n{TableColors.SUCCESS}Found member: {selected_member.FirstName} {selected_member.LastName}{TableColors.RESET}")
+ else:
+ print(f"\n{TableColors.HEADER}Multiple members found matching '{member_name}':{TableColors.RESET}")
+ print(f"{TableColors.BORDER}─" * 50 + f"{TableColors.RESET}")
+ print()
+ for i, member in enumerate(matching_members, 1):
+ status = "Active" if member.IsActive else "Inactive"
+ status_color = TableColors.SUCCESS if member.IsActive else TableColors.DIM
+ print(f" {TableColors.CYAN}{i}.{TableColors.RESET} {TableColors.BOLD}{member.FirstName} {member.LastName}{TableColors.RESET} {TableColors.DIM}({status_color}{status}{TableColors.RESET}{TableColors.DIM}){TableColors.RESET}")
+ print()
+
+ try:
+ print(f"\n{TableColors.INPUT_BOX}┌─ Select member (1-{len(matching_members)}) ─┐{TableColors.RESET}")
+ choice = input(f"{TableColors.INPUT_BOX}└─> {TableColors.RESET}").strip()
+ if not choice or not choice.isdigit():
+ print(f"{TableColors.ERROR}❌ Invalid selection{TableColors.RESET}")
+ return
+
+ member_index = int(choice) - 1
+ if member_index < 0 or member_index >= len(matching_members):
+ print(f"{TableColors.ERROR}❌ Invalid selection{TableColors.RESET}")
+ return
+
+ selected_member = matching_members[member_index]
+ except (KeyboardInterrupt, EOFError):
+ print(f"\n{TableColors.WARNING}🛑 Operation cancelled{TableColors.RESET}")
+ return
+
+ # Check if member is active
+ if not selected_member.IsActive:
+ print(f"\n{TableColors.WARNING}⚠️ Warning: {selected_member.FirstName} {selected_member.LastName} is marked as inactive{TableColors.RESET}")
+ try:
+ confirm = input(f"{TableColors.INPUT_BOX}Continue anyway? (y/N) {TableColors.RESET}").strip().lower()
+ if confirm not in ['y', 'yes']:
+ print(f"{TableColors.WARNING}Scheduling cancelled{TableColors.RESET}")
+ return
+ except (KeyboardInterrupt, EOFError):
+ print(f"\n{TableColors.WARNING}🛑 Operation cancelled{TableColors.RESET}")
+ return
+
+ # Get member's classification
+ if not selected_member.ClassificationId:
+ print(f"{TableColors.ERROR}❌ {selected_member.FirstName} {selected_member.LastName} has no classification assigned{TableColors.RESET}")
+ return
+
+ member_classification = cli.classification_repo.get_by_id(selected_member.ClassificationId)
+ if not member_classification:
+ print(f"{TableColors.ERROR}❌ Could not find classification for {selected_member.FirstName} {selected_member.LastName}{TableColors.RESET}")
+ return
+
+ classification_names = [member_classification.ClassificationName]
+
+ # Check service availability
+ if not cli.availability_repo.get(selected_member.MemberId, service.ServiceTypeId):
+ print(f"{TableColors.ERROR}❌ {selected_member.FirstName} {selected_member.LastName} is not available for {service_type_name} services{TableColors.RESET}")
+ return
+
+ # Check for existing schedules on the same date
+ if cli.schedule_repo.has_schedule_on_date(selected_member.MemberId, str(service.ServiceDate)):
+ print(f"{TableColors.ERROR}❌ {selected_member.FirstName} {selected_member.LastName} already has a schedule on {service.ServiceDate}{TableColors.RESET}")
+ return
+
+ # Check for existing schedule for this specific service
+ existing_schedule = cli.schedule_repo.get_one(member_id=selected_member.MemberId, service_id=service.ServiceId)
+ if existing_schedule:
+ status_text = existing_schedule.Status.upper()
+ print(f"{TableColors.ERROR}❌ {selected_member.FirstName} {selected_member.LastName} already has a {status_text} schedule for this service{TableColors.RESET}")
+ return
+
+ # Show confirmation
+ print(f"\n{TableColors.HEADER}Scheduling Confirmation{TableColors.RESET}")
+ print(f"{TableColors.BORDER}─" * 50 + f"{TableColors.RESET}")
+ print(f" {TableColors.BOLD}Member:{TableColors.RESET} {selected_member.FirstName} {selected_member.LastName}")
+ print(f" {TableColors.BOLD}Service:{TableColors.RESET} {service_type_name} on {service.ServiceDate}")
+ print(f" {TableColors.BOLD}Classifications:{TableColors.RESET} {', '.join(classification_names)}")
+ print()
+
+ try:
+ print(f"\n{TableColors.INPUT_BOX}┌─ Create this schedule? (Y/n) ─┐{TableColors.RESET}")
+ confirm = input(f"{TableColors.INPUT_BOX}└─> {TableColors.RESET}").strip().lower()
+ if confirm in ['n', 'no']:
+ print(f"{TableColors.WARNING}Scheduling cancelled{TableColors.RESET}")
+ return
+ except (KeyboardInterrupt, EOFError):
+ print(f"\n{TableColors.WARNING}🛑 Operation cancelled{TableColors.RESET}")
+ return
+
+ # Create the schedule
+ try:
+ from backend.models.enums import ScheduleStatus
+
+ schedule = cli.schedule_repo.create(
+ service_id=service.ServiceId,
+ member_id=selected_member.MemberId,
+ status=ScheduleStatus.PENDING,
+ )
+
+ # Update the member's LastScheduledAt timestamp
+ cli.member_repo.touch_last_scheduled(selected_member.MemberId)
+
+ print(f"\n{TableColors.SUCCESS}✅ Successfully scheduled {selected_member.FirstName} {selected_member.LastName}!{TableColors.RESET}")
+ print(f"{TableColors.DIM}Schedule ID: {schedule.ScheduleId}{TableColors.RESET}")
+ print(f"{TableColors.DIM}Status: Pending (awaiting member response){TableColors.RESET}")
+
+ except Exception as e:
+ print(f"{TableColors.ERROR}❌ Failed to create schedule: {e}{TableColors.RESET}")
+ return
+
+
def setup_schedules_parser(subparsers) -> None:
"""Set up schedule-related command parsers."""
# Schedules commands
@@ -880,7 +1032,8 @@ def setup_schedules_parser(subparsers) -> None:
schedules_remove_parser.add_argument("--date", type=str, help="Interactive mode: select service and members by date (YYYY-MM-DD)")
# schedules schedule
- schedules_schedule_parser = schedules_subparsers.add_parser("schedule", help="Schedule next member for a service (cycles through eligible members)")
+ schedules_schedule_parser = schedules_subparsers.add_parser("schedule", help="Schedule next member for a service (cycles through eligible members or by name)")
schedules_schedule_parser.add_argument("service_id", type=int, nargs="?", help="Service ID to schedule for (optional if using --date)")
schedules_schedule_parser.add_argument("--date", type=str, help="Interactive mode: select service by date (YYYY-MM-DD)")
- schedules_schedule_parser.add_argument("--classifications", nargs="*", help="Classification names to filter by (e.g., Soprano Alto)")
\ No newline at end of file
+ schedules_schedule_parser.add_argument("--classifications", nargs="*", help="Classification names to filter by (e.g., Soprano Alto)")
+ schedules_schedule_parser.add_argument("--member-name", type=str, help="Schedule a specific member by name (first, last, or both)")
\ No newline at end of file
diff --git a/backend/cli/interactive.py b/backend/cli/interactive.py
index 823b512..f98aa47 100644
--- a/backend/cli/interactive.py
+++ b/backend/cli/interactive.py
@@ -177,7 +177,7 @@ def display_schedules_menu():
print(f" {Colors.CYAN}2.{Colors.RESET} {Colors.GREEN}Accept a schedule{Colors.RESET}")
print(f" {Colors.CYAN}3.{Colors.RESET} {Colors.RED}Decline a schedule{Colors.RESET}")
print(f" {Colors.CYAN}4.{Colors.RESET} {Colors.ERROR}Remove scheduled members{Colors.RESET}")
- print(f" {Colors.CYAN}5.{Colors.RESET} {Colors.YELLOW}Schedule next member for service{Colors.RESET}")
+ print(f" {Colors.CYAN}5.{Colors.RESET} {Colors.YELLOW}Schedule member for service{Colors.RESET}")
print(f" {Colors.CYAN}6.{Colors.RESET} {Colors.DIM}Back to main menu{Colors.RESET}")
print()
@@ -417,7 +417,27 @@ def handle_schedules_menu(cli: "NimbusFlowCLI"):
date = get_date_input("Enter date to schedule for")
if date:
clear_screen()
- cmd_schedules_schedule(cli, MockArgs(service_id=None, date=date, classifications=None))
+
+ # Ask if they want to schedule by name or use round-robin
+ print(f"\n{Colors.HEADER}Scheduling Options{Colors.RESET}")
+ print(f"{Colors.GREY}─" * 50 + f"{Colors.RESET}")
+ print()
+ print(f" {Colors.CYAN}1.{Colors.RESET} {Colors.YELLOW}Round-robin scheduling{Colors.RESET} (choose next available member)")
+ print(f" {Colors.CYAN}2.{Colors.RESET} {Colors.GREEN}Schedule by name{Colors.RESET} (choose specific member)")
+ print()
+
+ schedule_choice = get_user_choice(2)
+ clear_screen()
+
+ if schedule_choice == 1:
+ # Round-robin scheduling
+ cmd_schedules_schedule(cli, MockArgs(service_id=None, date=date, classifications=None, member_name=None))
+ else:
+ # Name-based scheduling
+ member_name = get_text_input("Enter member name to search for (first, last, or both)", True)
+ if member_name:
+ clear_screen()
+ cmd_schedules_schedule(cli, MockArgs(service_id=None, date=date, classifications=None, member_name=member_name))
input(f"\n{Colors.DIM}Press Enter to continue...{Colors.RESET}")
elif choice == 6: # Back to main menu
diff --git a/backend/repositories/schedule.py b/backend/repositories/schedule.py
index 150eeb9..b93eb8a 100644
--- a/backend/repositories/schedule.py
+++ b/backend/repositories/schedule.py
@@ -213,12 +213,12 @@ class ScheduleRepository(BaseRepository[ScheduleModel]):
# ------------------------------------------------------------------
def has_schedule_on_date(self, member_id: int, service_date: str) -> bool:
"""
- Return ``True`` if *any* schedule (regardless of status) exists for
+ Return ``True`` if any *active* schedule (pending or accepted) exists for
``member_id`` on the calendar day ``service_date`` (format YYYY‑MM‑DD).
- This abstracts the “a member can only be scheduled once per day”
+ This abstracts the "a member can only be actively scheduled once per day"
rule so the service layer does not need to know the underlying
- table layout.
+ table layout. Declined schedules do not count as blocking.
"""
sql = f"""
SELECT 1
@@ -226,9 +226,10 @@ class ScheduleRepository(BaseRepository[ScheduleModel]):
JOIN Services AS sv ON s.ServiceId = sv.ServiceId
WHERE s.MemberId = ?
AND sv.ServiceDate = ?
+ AND s.Status IN (?, ?)
LIMIT 1
"""
- row = self.db.fetchone(sql, (member_id, service_date))
+ row = self.db.fetchone(sql, (member_id, service_date, ScheduleStatus.PENDING.value, ScheduleStatus.ACCEPTED.value))
return row is not None
# ------------------------------------------------------------------
diff --git a/backend/services/scheduling_service.py b/backend/services/scheduling_service.py
index 6ef0459..7a2cbb7 100644
--- a/backend/services/scheduling_service.py
+++ b/backend/services/scheduling_service.py
@@ -7,7 +7,7 @@
from __future__ import annotations
from datetime import datetime, timezone
-from typing import Optional, Tuple, List, Iterable
+from typing import Optional, Tuple, List, Iterable, Literal
from backend.repositories import (
ClassificationRepository,
diff --git a/backend/tests/repositories/test_schedule.py b/backend/tests/repositories/test_schedule.py
index 2f63b15..43b1d38 100644
--- a/backend/tests/repositories/test_schedule.py
+++ b/backend/tests/repositories/test_schedule.py
@@ -223,28 +223,40 @@ def test_has_schedule_on_date(
service_repo: ServiceRepository,
clean_schedules
):
- """Test checking if member has any schedule on a specific date."""
+ """Test checking if member has any active schedule on a specific date."""
# Create services on different dates
- service_today = service_repo.create(
+ service_today_9am = service_repo.create(
service_type_id=1,
service_date=dt.date(2025, 9, 15)
)
+ service_today_11am = service_repo.create(
+ service_type_id=2,
+ service_date=dt.date(2025, 9, 15)
+ )
service_tomorrow = service_repo.create(
service_type_id=2,
service_date=dt.date(2025, 9, 16)
)
- # Create schedule for today
+ # Create pending schedule for today
schedule_repo.create(
- service_id=service_today.ServiceId,
+ service_id=service_today_9am.ServiceId,
member_id=1,
status=ScheduleStatus.PENDING
)
+ # Create declined schedule for today (should not block)
+ schedule_repo.create(
+ service_id=service_today_11am.ServiceId,
+ member_id=2,
+ status=ScheduleStatus.DECLINED
+ )
+
# Test has_schedule_on_date
- assert schedule_repo.has_schedule_on_date(1, "2025-09-15")
- assert not schedule_repo.has_schedule_on_date(1, "2025-09-16")
- assert not schedule_repo.has_schedule_on_date(2, "2025-09-15")
+ assert schedule_repo.has_schedule_on_date(1, "2025-09-15") # pending schedule blocks
+ assert not schedule_repo.has_schedule_on_date(2, "2025-09-15") # declined schedule doesn't block
+ assert not schedule_repo.has_schedule_on_date(1, "2025-09-16") # different date
+ assert not schedule_repo.has_schedule_on_date(3, "2025-09-15") # different member
# ----------------------------------------------------------------------
diff --git a/frontend/.gitignore b/frontend/.gitignore
index f81e3e3..3112085 100644
--- a/frontend/.gitignore
+++ b/frontend/.gitignore
@@ -3,6 +3,11 @@ bin/
obj/
out/
+# Explicit .NET build artifacts
+*.dll
+*.pdb
+*.exe
+
# User-specific files
*.rsuser
*.suo
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend
deleted file mode 100755
index 087a090..0000000
Binary files a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend and /dev/null differ
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.deps.json b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.deps.json
deleted file mode 100644
index 1497317..0000000
--- a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.deps.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "NimbusFlow.Frontend/1.0.0": {
- "runtime": {
- "NimbusFlow.Frontend.dll": {}
- }
- }
- }
- },
- "libraries": {
- "NimbusFlow.Frontend/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.dll b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.dll
deleted file mode 100644
index 67cf608..0000000
Binary files a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.dll and /dev/null differ
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.pdb b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.pdb
deleted file mode 100644
index 68ed5b2..0000000
Binary files a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.pdb and /dev/null differ
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.runtimeconfig.json b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.runtimeconfig.json
deleted file mode 100644
index 5e604c7..0000000
--- a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.runtimeconfig.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "System.GC.Server": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.staticwebassets.runtime.json b/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.staticwebassets.runtime.json
deleted file mode 100644
index 2304d34..0000000
--- a/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.staticwebassets.runtime.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ContentRoots":["/home/t2/Development/nimbusflow/frontend/wwwroot/","/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/scopedcss/bundle/"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"nimbusflow.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/nimbusflow.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"NimbusFlow.Frontend.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"NimbusFlow.Frontend.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/frontend/bin/Debug/net8.0/appsettings.Development.json b/frontend/bin/Debug/net8.0/appsettings.Development.json
deleted file mode 100644
index 0c208ae..0000000
--- a/frontend/bin/Debug/net8.0/appsettings.Development.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/frontend/bin/Debug/net8.0/appsettings.json b/frontend/bin/Debug/net8.0/appsettings.json
deleted file mode 100644
index 10f68b8..0000000
--- a/frontend/bin/Debug/net8.0/appsettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*"
-}
diff --git a/frontend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/frontend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/frontend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfo.cs b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfo.cs
deleted file mode 100644
index cf7e389..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("NimbusFlow.Frontend")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+133efdddeaca67de9c657b22a9a336c76ff65dfb")]
-[assembly: System.Reflection.AssemblyProductAttribute("NimbusFlow.Frontend")]
-[assembly: System.Reflection.AssemblyTitleAttribute("NimbusFlow.Frontend")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfoInputs.cache b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfoInputs.cache
deleted file mode 100644
index a8d26a0..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-f301bdfdc7b594589c917e1256f8f410c1893af1ef23d88133340e83a19fc068
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GeneratedMSBuildEditorConfig.editorconfig b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 2518dfc..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,59 +0,0 @@
-is_global = true
-build_property.TargetFramework = net8.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb = true
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = NimbusFlow.Frontend
-build_property.RootNamespace = NimbusFlow.Frontend
-build_property.ProjectDir = /home/t2/Development/nimbusflow/frontend/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.RazorLangVersion = 8.0
-build_property.SupportLocalizedComponentNames =
-build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = /home/t2/Development/nimbusflow/frontend
-build_property._RazorSourceGeneratorDebug =
-
-[/home/t2/Development/nimbusflow/frontend/Components/App.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BcHAucmF6b3I=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Pages/Error.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9FcnJvci5yYXpvcg==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Pages/Home.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Pages/Members.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9NZW1iZXJzLnJhem9y
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Pages/Schedules.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TY2hlZHVsZXMucmF6b3I=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Pages/Services.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9TZXJ2aWNlcy5yYXpvcg==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Routes.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Sb3V0ZXMucmF6b3I=
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/_Imports.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9fSW1wb3J0cy5yYXpvcg==
-build_metadata.AdditionalFiles.CssScope =
-
-[/home/t2/Development/nimbusflow/frontend/Components/Layout/MainLayout.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTWFpbkxheW91dC5yYXpvcg==
-build_metadata.AdditionalFiles.CssScope = b-9xz5ehm10w
-
-[/home/t2/Development/nimbusflow/frontend/Components/Layout/NavMenu.razor]
-build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTmF2TWVudS5yYXpvcg==
-build_metadata.AdditionalFiles.CssScope = b-qjlejshrrx
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GlobalUsings.g.cs b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GlobalUsings.g.cs
deleted file mode 100644
index 025530a..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GlobalUsings.g.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.MvcApplicationPartsAssemblyInfo.cache b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.MvcApplicationPartsAssemblyInfo.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.assets.cache b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.assets.cache
deleted file mode 100644
index 887c06d..0000000
Binary files a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.assets.cache and /dev/null differ
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.CoreCompileInputs.cache b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 3e02d0c..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-72e9b9308a1f905093ef5ce6ebcb221be89fd0ba2dc586d8cf8c992ab0511185
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.FileListAbsolute.txt b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.FileListAbsolute.txt
deleted file mode 100644
index 68b06ac..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/appsettings.Development.json
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/appsettings.json
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.staticwebassets.runtime.json
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.deps.json
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.runtimeconfig.json
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.dll
-/home/t2/Development/nimbusflow/frontend/bin/Debug/net8.0/NimbusFlow.Frontend.pdb
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.GeneratedMSBuildEditorConfig.editorconfig
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfoInputs.cache
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.AssemblyInfo.cs
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.csproj.CoreCompileInputs.cache
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.MvcApplicationPartsAssemblyInfo.cache
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets.build.json
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets.development.json
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets/msbuild.NimbusFlow.Frontend.Microsoft.AspNetCore.StaticWebAssets.props
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets/msbuild.build.NimbusFlow.Frontend.props
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.NimbusFlow.Frontend.props
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.NimbusFlow.Frontend.props
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/staticwebassets.pack.json
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/scopedcss/bundle/NimbusFlow.Frontend.styles.css
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/scopedcss/projectbundle/NimbusFlow.Frontend.bundle.scp.css
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.dll
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/refint/NimbusFlow.Frontend.dll
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.pdb
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.genruntimeconfig.cache
-/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/ref/NimbusFlow.Frontend.dll
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.dll b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.dll
deleted file mode 100644
index 67cf608..0000000
Binary files a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.dll and /dev/null differ
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.genruntimeconfig.cache b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.genruntimeconfig.cache
deleted file mode 100644
index 2d6c7ce..0000000
--- a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-3f75a48d851e3753676d6adc9e3697efe55d6269084946619fd7f2b230a66010
diff --git a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.pdb b/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.pdb
deleted file mode 100644
index 68ed5b2..0000000
Binary files a/frontend/obj/Debug/net8.0/NimbusFlow.Frontend.pdb and /dev/null differ
diff --git a/frontend/obj/Debug/net8.0/apphost b/frontend/obj/Debug/net8.0/apphost
deleted file mode 100755
index 087a090..0000000
Binary files a/frontend/obj/Debug/net8.0/apphost and /dev/null differ
diff --git a/frontend/obj/Debug/net8.0/project.razor.json b/frontend/obj/Debug/net8.0/project.razor.json
deleted file mode 100644
index 0c0cc4e..0000000
--- a/frontend/obj/Debug/net8.0/project.razor.json
+++ /dev/null
@@ -1,19785 +0,0 @@
-{
- "SerializedFilePath": "/home/t2/Development/nimbusflow/frontend/obj/Debug/net8.0/project.razor.json",
- "FilePath": "/home/t2/Development/nimbusflow/frontend/NimbusFlow.Frontend.csproj",
- "Configuration": {
- "ConfigurationName": "MVC-3.0",
- "LanguageVersion": "8.0",
- "Extensions": [
- {
- "ExtensionName": "MVC-3.0"
- }
- ]
- },
- "ProjectWorkspaceState": {
- "TagHelpers": [
- {
- "HashCode": -1640154179,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Error",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Error"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Error",
- "Common.TypeNameIdentifier": "Error",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1453492476,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Error",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Pages.Error"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Error",
- "Common.TypeNameIdentifier": "Error",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1151236410,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Schedules",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Schedules"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Schedules",
- "Common.TypeNameIdentifier": "Schedules",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1413798657,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Schedules",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Pages.Schedules"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Schedules",
- "Common.TypeNameIdentifier": "Schedules",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 343014593,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Members",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Members"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Members",
- "Common.TypeNameIdentifier": "Members",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 696101151,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Members",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Pages.Members"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Members",
- "Common.TypeNameIdentifier": "Members",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1876423682,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Services",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Services"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Services",
- "Common.TypeNameIdentifier": "Services",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 760613516,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Services",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Pages.Services"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Services",
- "Common.TypeNameIdentifier": "Services",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1727162561,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Home",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Home"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Home",
- "Common.TypeNameIdentifier": "Home",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1430573692,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Pages.Home",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Pages.Home"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Pages.Home",
- "Common.TypeNameIdentifier": "Home",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Pages",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -441396754,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Layout.MainLayout",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "MainLayout"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Body",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Body",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.MainLayout",
- "Common.TypeNameIdentifier": "MainLayout",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1830634386,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Layout.MainLayout",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Layout.MainLayout"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Body",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Body",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.MainLayout",
- "Common.TypeNameIdentifier": "MainLayout",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -624384302,
- "Kind": "Components.ChildContent",
- "Name": "NimbusFlow.Frontend.Components.Layout.MainLayout.Body",
- "AssemblyName": "NimbusFlow.Frontend",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Body",
- "ParentTag": "MainLayout"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.MainLayout.Body",
- "Common.TypeNameIdentifier": "MainLayout",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -798357752,
- "Kind": "Components.ChildContent",
- "Name": "NimbusFlow.Frontend.Components.Layout.MainLayout.Body",
- "AssemblyName": "NimbusFlow.Frontend",
- "Documentation": "\n \n Gets the content to be rendered inside the layout.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Body",
- "ParentTag": "NimbusFlow.Frontend.Components.Layout.MainLayout"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.MainLayout.Body",
- "Common.TypeNameIdentifier": "MainLayout",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1822660904,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Layout.NavMenu",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NavMenu"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.NavMenu",
- "Common.TypeNameIdentifier": "NavMenu",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -446949928,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Layout.NavMenu",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Layout.NavMenu"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Layout.NavMenu",
- "Common.TypeNameIdentifier": "NavMenu",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components.Layout",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -781984882,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Routes",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Routes"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Routes",
- "Common.TypeNameIdentifier": "Routes",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -20363048,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.Routes",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.Routes"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.Routes",
- "Common.TypeNameIdentifier": "Routes",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 948002439,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.App",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "App"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.App",
- "Common.TypeNameIdentifier": "App",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -184055567,
- "Kind": "Components.Component",
- "Name": "NimbusFlow.Frontend.Components.App",
- "AssemblyName": "NimbusFlow.Frontend",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NimbusFlow.Frontend.Components.App"
- }
- ],
- "Metadata": {
- "Common.TypeName": "NimbusFlow.Frontend.Components.App",
- "Common.TypeNameIdentifier": "App",
- "Common.TypeNamespace": "NimbusFlow.Frontend.Components",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1274431743,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "AuthorizeRouteView"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "NotAuthorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorizing",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Resource",
- "TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Resource",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DefaultLayout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 275902715,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "NotAuthorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorizing",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Resource",
- "TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Resource",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DefaultLayout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1757486718,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotAuthorized",
- "ParentTag": "AuthorizeRouteView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 655804022,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotAuthorized",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1709672961,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorizing",
- "ParentTag": "AuthorizeRouteView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -221610213,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorizing",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
- "Common.TypeNameIdentifier": "AuthorizeRouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1591332827,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Policy",
- "TypeName": "System.String",
- "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Policy",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Roles",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "NotAuthorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorizing",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Resource",
- "TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Resource",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -881402247,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Policy",
- "TypeName": "System.String",
- "Documentation": "\n \n The policy name that determines whether the content can be displayed.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Policy",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Roles",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "NotAuthorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorized",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Authorizing",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Resource",
- "TypeName": "System.Object",
- "Documentation": "\n \n The resource to which access is being controlled.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Resource",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1020941473,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -390648153,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 2075542958,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotAuthorized",
- "ParentTag": "AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1757140585,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotAuthorized",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'NotAuthorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -830800011,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorized",
- "ParentTag": "AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -933807010,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorized",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'Authorized' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1779958686,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorizing",
- "ParentTag": "AuthorizeView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 947975997,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Authorizing",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
- "Common.TypeNameIdentifier": "AuthorizeView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1659092258,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
- "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "CascadingAuthenticationState"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
- "Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -47254504,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
- "AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
- "Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1392500723,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "CascadingAuthenticationState"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
- "Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 415842426,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
- "Common.TypeNameIdentifier": "CascadingAuthenticationState",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Authorization",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -342268942,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "CascadingValue"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the value should be provided.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Value",
- "TypeName": "TValue",
- "Documentation": "\n \n The value to be provided.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "IsFixed",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
- "Common.TypeNameIdentifier": "CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1102893199,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.CascadingValue"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.CascadingValue component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n The content to which the value should be provided.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Value",
- "TypeName": "TValue",
- "Documentation": "\n \n The value to be provided.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "IsFixed",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue",
- "Common.TypeNameIdentifier": "CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -490309305,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "CascadingValue"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
- "Common.TypeNameIdentifier": "CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 350068940,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.CascadingValue"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
- "Common.TypeNameIdentifier": "CascadingValue",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 291015217,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "DynamicComponent"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Type",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Parameters",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent",
- "Common.TypeNameIdentifier": "DynamicComponent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1398858730,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.DynamicComponent"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Type",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Parameters",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.DynamicComponent",
- "Common.TypeNameIdentifier": "DynamicComponent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -489224166,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "LayoutView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Layout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView",
- "Common.TypeNameIdentifier": "LayoutView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -962035503,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.LayoutView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Layout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView",
- "Common.TypeNameIdentifier": "LayoutView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1295598783,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "LayoutView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
- "Common.TypeNameIdentifier": "LayoutView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 373045505,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.LayoutView"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
- "Common.TypeNameIdentifier": "LayoutView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1922553460,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "RouteView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DefaultLayout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView",
- "Common.TypeNameIdentifier": "RouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1914656439,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.RouteView"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DefaultLayout",
- "Common.GloballyQualifiedTypeName": "global::System.Type"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.RouteView",
- "Common.TypeNameIdentifier": "RouteView",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1322279055,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Router"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AppAssembly",
- "Common.GloballyQualifiedTypeName": "global::System.Reflection.Assembly"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAssemblies",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "NotFound",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
- "Metadata": {
- "Common.PropertyName": "NotFound",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Found",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Navigating",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnNavigateAsync",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "PreferExactMatches",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 683278312,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Routing.Router"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AppAssembly",
- "Common.GloballyQualifiedTypeName": "global::System.Reflection.Assembly"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAssemblies",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IEnumerable"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "NotFound",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to display when no match is found for the requested route.\n \n ",
- "Metadata": {
- "Common.PropertyName": "NotFound",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Found",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Navigating",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnNavigateAsync",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "PreferExactMatches",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 729540169,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotFound",
- "ParentTag": "Router"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -641092659,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NotFound",
- "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -358995060,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Found",
- "ParentTag": "Router"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'Found' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 828399595,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Found",
- "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'Found' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Found",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1939411635,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Navigating",
- "ParentTag": "Router"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 2146585741,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Navigating",
- "ParentTag": "Microsoft.AspNetCore.Components.Routing.Router"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
- "Common.TypeNameIdentifier": "Router",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -764663138,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionContent",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Provides content to components with matching s.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "SectionContent"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "SectionName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the ID that determines which instance will render\n the content of this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SectionId",
- "TypeName": "System.Object",
- "Documentation": "\n \n Gets or sets the ID that determines which instance will render\n the content of this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionId",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered in corresponding instances.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionContent",
- "Common.TypeNameIdentifier": "SectionContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -555096930,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionContent",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Provides content to components with matching s.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Sections.SectionContent"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "SectionName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the ID that determines which instance will render\n the content of this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SectionId",
- "TypeName": "System.Object",
- "Documentation": "\n \n Gets or sets the ID that determines which instance will render\n the content of this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionId",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to be rendered in corresponding instances.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionContent",
- "Common.TypeNameIdentifier": "SectionContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1148120664,
- "Kind": "Components.ChildContent",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionContent.ChildContent",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Gets or sets the content to be rendered in corresponding instances.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "SectionContent"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionContent.ChildContent",
- "Common.TypeNameIdentifier": "SectionContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1493370906,
- "Kind": "Components.ChildContent",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionContent.ChildContent",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Gets or sets the content to be rendered in corresponding instances.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Sections.SectionContent"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionContent.ChildContent",
- "Common.TypeNameIdentifier": "SectionContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -152975088,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionOutlet",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Renders content provided by components with matching s.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "SectionOutlet"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "SectionName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the ID that determines which instances will provide\n content to this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SectionId",
- "TypeName": "System.Object",
- "Documentation": "\n \n Gets or sets the ID that determines which instances will provide\n content to this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionId",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionOutlet",
- "Common.TypeNameIdentifier": "SectionOutlet",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1390536298,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Sections.SectionOutlet",
- "AssemblyName": "Microsoft.AspNetCore.Components",
- "Documentation": "\n \n Renders content provided by components with matching s.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Sections.SectionOutlet"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "SectionName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the ID that determines which instances will provide\n content to this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "SectionId",
- "TypeName": "System.Object",
- "Documentation": "\n \n Gets or sets the ID that determines which instances will provide\n content to this instance.\n \n ",
- "Metadata": {
- "Common.PropertyName": "SectionId",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Sections.SectionOutlet",
- "Common.TypeNameIdentifier": "SectionOutlet",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Sections",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 591136106,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "DataAnnotationsValidator"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
- "Common.TypeNameIdentifier": "DataAnnotationsValidator",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 756744451,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
- "Common.TypeNameIdentifier": "DataAnnotationsValidator",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1697558040,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.AntiforgeryToken",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Component that renders an antiforgery token as a hidden field.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "AntiforgeryToken"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.AntiforgeryToken",
- "Common.TypeNameIdentifier": "AntiforgeryToken",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1609034167,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.AntiforgeryToken",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Component that renders an antiforgery token as a hidden field.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.AntiforgeryToken"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.AntiforgeryToken",
- "Common.TypeNameIdentifier": "AntiforgeryToken",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1888623289,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "EditForm"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "EditContext",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.EditContext"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Enhance",
- "TypeName": "System.Boolean",
- "Documentation": "\n \n If enabled, form submission is performed without fully reloading the page. This is\n equivalent to adding data-enhance to the form.\n \n This flag is only relevant in server-side rendering (SSR) scenarios. For interactive\n rendering, the flag has no effect since there is no full-page reload on submit anyway.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Enhance",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Model",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnValidSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnInvalidSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "FormName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the form handler name. This is required for posting it to a server-side endpoint.\n It is not used during interactive rendering.\n \n ",
- "Metadata": {
- "Common.PropertyName": "FormName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm",
- "Common.TypeNameIdentifier": "EditForm",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1039184447,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.EditForm"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "EditContext",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.EditContext"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Enhance",
- "TypeName": "System.Boolean",
- "Documentation": "\n \n If enabled, form submission is performed without fully reloading the page. This is\n equivalent to adding data-enhance to the form.\n \n This flag is only relevant in server-side rendering (SSR) scenarios. For interactive\n rendering, the flag has no effect since there is no full-page reload on submit anyway.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Enhance",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Model",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnValidSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnInvalidSubmit",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "FormName",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the form handler name. This is required for posting it to a server-side endpoint.\n It is not used during interactive rendering.\n \n ",
- "Metadata": {
- "Common.PropertyName": "FormName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm",
- "Common.TypeNameIdentifier": "EditForm",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1212322146,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "EditForm"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
- "Common.TypeNameIdentifier": "EditForm",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1120013681,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Forms.EditForm"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
- "Common.TypeNameIdentifier": "EditForm",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -535286737,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputCheckbox"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
- "Common.TypeNameIdentifier": "InputCheckbox",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -283893496,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
- "Common.TypeNameIdentifier": "InputCheckbox",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1937687017,
- "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 The supported types for the date value are:\n \n \n \n \n \n
\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputDate"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Type",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.InputDateType"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ParsingErrorMessage",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
- "Common.TypeNameIdentifier": "InputDate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 2122015437,
- "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 The supported types for the date value are:\n \n \n \n \n \n
\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputDate"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputDate component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Type",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Forms.InputDateType"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ParsingErrorMessage",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputDate",
- "Common.TypeNameIdentifier": "InputDate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1678103272,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputFile"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnChange",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile",
- "Common.TypeNameIdentifier": "InputFile",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1689998137,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputFile"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnChange",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputFile",
- "Common.TypeNameIdentifier": "InputFile",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -952550385,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputNumber"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ParsingErrorMessage",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
- "Common.TypeNameIdentifier": "InputNumber",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1792715705,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputNumber"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputNumber component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ParsingErrorMessage",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputNumber",
- "Common.TypeNameIdentifier": "InputNumber",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1589794014,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputRadio"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Value",
- "TypeName": "TValue",
- "Documentation": "\n \n Gets or sets the value of this input.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio",
- "Common.TypeNameIdentifier": "InputRadio",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1715249531,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadio"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadio component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Value",
- "TypeName": "TValue",
- "Documentation": "\n \n Gets or sets the value of this input.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the parent input radio group.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadio",
- "Common.TypeNameIdentifier": "InputRadio",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -286216475,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Groups child components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputRadioGroup"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the group.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "Common.TypeNameIdentifier": "InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1184667769,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Groups child components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputRadioGroup component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "Documentation": "\n \n Gets or sets the name of the group.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
- "Common.TypeNameIdentifier": "InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1772485335,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "InputRadioGroup"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
- "Common.TypeNameIdentifier": "InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 287525258,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
- "Common.TypeNameIdentifier": "InputRadioGroup",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1601122223,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A dropdown selection component.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputSelect"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "Common.TypeNameIdentifier": "InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1263224594,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n A dropdown selection component.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputSelect"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.InputSelect component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "TValue",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Common.PropertyName": "ValueChanged",
- "Components.EventCallback": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect",
- "Common.TypeNameIdentifier": "InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 376132710,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "InputSelect"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
- "Common.TypeNameIdentifier": "InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 1930486945,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Forms.InputSelect"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
- "Common.TypeNameIdentifier": "InputSelect",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1010157974,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputText"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
- "Common.TypeNameIdentifier": "InputText",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1719388777,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputText"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputText",
- "Common.TypeNameIdentifier": "InputText",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1292804346,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "InputTextArea"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
- "Common.TypeNameIdentifier": "InputTextArea",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1532306883,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.InputTextArea"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Value",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueChanged",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ValueExpression",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "DisplayName",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
- "Common.TypeNameIdentifier": "InputTextArea",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1483579492,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.FormMappingScope",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Defines the mapping scope for data received from form posts.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FormMappingScope"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "IsEditorRequired": true,
- "Documentation": "\n \n The mapping scope name.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.FormMappingScope",
- "Common.TypeNameIdentifier": "FormMappingScope",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1463310503,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Forms.FormMappingScope",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Defines the mapping scope for data received from form posts.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.FormMappingScope"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "Name",
- "TypeName": "System.String",
- "IsEditorRequired": true,
- "Documentation": "\n \n The mapping scope name.\n \n ",
- "Metadata": {
- "Common.PropertyName": "Name",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.FormMappingScope",
- "Common.TypeNameIdentifier": "FormMappingScope",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1738259412,
- "Kind": "Components.ChildContent",
- "Name": "Microsoft.AspNetCore.Components.Forms.FormMappingScope.ChildContent",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "FormMappingScope"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.FormMappingScope.ChildContent",
- "Common.TypeNameIdentifier": "FormMappingScope",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -573066900,
- "Kind": "Components.ChildContent",
- "Name": "Microsoft.AspNetCore.Components.Forms.FormMappingScope.ChildContent",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Specifies the content to be rendered inside this .\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Forms.FormMappingScope"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ChildContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.FormMappingScope.ChildContent",
- "Common.TypeNameIdentifier": "FormMappingScope",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1979988272,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ValidationMessage"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "For",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
- "Common.TypeNameIdentifier": "ValidationMessage",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1034302310,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TValue",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TValue for the Microsoft.AspNetCore.Components.Forms.ValidationMessage component.",
- "Metadata": {
- "Common.PropertyName": "TValue",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "For",
- "Common.GloballyQualifiedTypeName": "global::System.Linq.Expressions.Expression>",
- "Components.GenericTyped": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
- "Common.TypeNameIdentifier": "ValidationMessage",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.GenericTyped": "True",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -231960434,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ValidationSummary"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Model",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
- "Common.TypeNameIdentifier": "ValidationSummary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -254830844,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Model",
- "Common.GloballyQualifiedTypeName": "global::System.Object"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
- "Common.TypeNameIdentifier": "ValidationSummary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Forms",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1338707312,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "FocusOnNavigate"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Selector",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
- "Common.TypeNameIdentifier": "FocusOnNavigate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 459345620,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "RouteData",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RouteData"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Selector",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
- "Common.TypeNameIdentifier": "FocusOnNavigate",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1032936832,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NavigationLock"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnBeforeInternalNavigation",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ConfirmExternalNavigation",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
- "Common.TypeNameIdentifier": "NavigationLock",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1356637321,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Routing.NavigationLock"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OnBeforeInternalNavigation",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.EventCallback",
- "Components.EventCallback": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ConfirmExternalNavigation",
- "Common.GloballyQualifiedTypeName": "global::System.Boolean"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
- "Common.TypeNameIdentifier": "NavigationLock",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1264839057,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "NavLink"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ActiveClass",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Match",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink",
- "Common.TypeNameIdentifier": "NavLink",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1015582292,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Routing.NavLink"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ActiveClass",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "AdditionalAttributes",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.IReadOnlyDictionary"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the child content of the component.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Match",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Routing.NavLinkMatch"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink",
- "Common.TypeNameIdentifier": "NavLink",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -881593464,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "NavLink"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
- "Common.TypeNameIdentifier": "NavLink",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 553290973,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Routing.NavLink"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
- "Common.TypeNameIdentifier": "NavLink",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Routing",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 964143721,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides content to components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "HeadContent"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent",
- "Common.TypeNameIdentifier": "HeadContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -721762078,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Provides content to components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Web.HeadContent"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent",
- "Common.TypeNameIdentifier": "HeadContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -2139102086,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "HeadContent"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
- "Common.TypeNameIdentifier": "HeadContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1847069606,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Web.HeadContent"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
- "Common.TypeNameIdentifier": "HeadContent",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -1855980007,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Renders content provided by components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "HeadOutlet"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
- "Common.TypeNameIdentifier": "HeadOutlet",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 556655808,
- "Kind": "Components.Component",
- "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
- "AssemblyName": "Microsoft.AspNetCore.Components.Web",
- "Documentation": "\n \n Renders content provided by components.\n \n ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Web.HeadOutlet"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
- "Common.TypeNameIdentifier": "HeadOutlet",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1313752934,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "PageTitle"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle",
- "Common.TypeNameIdentifier": "PageTitle",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1647242363,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Web.PageTitle"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle",
- "Common.TypeNameIdentifier": "PageTitle",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": 1530206599,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "PageTitle"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
- "Common.TypeNameIdentifier": "PageTitle",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": 690513923,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Web.PageTitle"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
- "Common.TypeNameIdentifier": "PageTitle",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -715532513,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ErrorBoundary"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ErrorContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "MaximumErrorCount",
- "Common.GloballyQualifiedTypeName": "global::System.Int32"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -192698684,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary"
- }
- ],
- "BoundAttributes": [
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ChildContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "ErrorContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "MaximumErrorCount",
- "Common.GloballyQualifiedTypeName": "global::System.Int32"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -1342470623,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "ErrorBoundary"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -21984084,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ChildContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary"
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -878912607,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ErrorContent",
- "ParentTag": "ErrorBoundary"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -931465545,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "ErrorContent",
- "ParentTag": "Microsoft.AspNetCore.Components.Web.ErrorBoundary"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.ChildContent",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for the 'ErrorContent' child content expression.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
- "Common.TypeNameIdentifier": "ErrorBoundary",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web",
- "Components.IsSpecialKind": "Components.ChildContent",
- "Components.NameMatch": "Components.FullyQualifiedNameMatch",
- "Runtime.Name": "Components.None"
- }
- },
- {
- "HashCode": -559633307,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Virtualize"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Common.PropertyName": "ChildContent",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ItemContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Common.PropertyName": "ItemContent",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Placeholder",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "EmptyContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to show when is empty\n or when the is zero.\n \n ",
- "Metadata": {
- "Common.PropertyName": "EmptyContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ItemSize",
- "TypeName": "System.Single",
- "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ItemSize",
- "Common.GloballyQualifiedTypeName": "global::System.Single"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
- "Common.PropertyName": "ItemsProvider",
- "Components.DelegateSignature": "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 ",
- "Metadata": {
- "Common.PropertyName": "Items",
- "Common.GloballyQualifiedTypeName": "global::System.Collections.Generic.ICollection",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "OverscanCount",
- "Common.GloballyQualifiedTypeName": "global::System.Int32"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "SpacerElement",
- "Common.GloballyQualifiedTypeName": "global::System.String"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Context",
- "TypeName": "System.String",
- "Documentation": "Specifies the parameter name for all child content expressions.",
- "Metadata": {
- "Components.ChildContentParameterName": "True",
- "Common.PropertyName": "Context"
- }
- }
- ],
- "Metadata": {
- "Common.TypeName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
- "Common.TypeNameIdentifier": "Virtualize",
- "Common.TypeNamespace": "Microsoft.AspNetCore.Components.Web.Virtualization",
- "Components.GenericTyped": "True",
- "Runtime.Name": "Components.IComponent"
- }
- },
- {
- "HashCode": -146223033,
- "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 ",
- "CaseSensitive": true,
- "TagMatchingRules": [
- {
- "TagName": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize"
- }
- ],
- "BoundAttributes": [
- {
- "Kind": "Components.Component",
- "Name": "TItem",
- "TypeName": "System.Type",
- "Documentation": "Specifies the type of the type parameter TItem for the Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize component.",
- "Metadata": {
- "Common.PropertyName": "TItem",
- "Components.TypeParameter": "True",
- "Components.TypeParameterIsCascading": "False"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ChildContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Common.PropertyName": "ChildContent",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ItemContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the item template for the list.\n \n ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Common.PropertyName": "ItemContent",
- "Components.ChildContent": "True",
- "Components.GenericTyped": "True"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.PropertyName": "Placeholder",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "EmptyContent",
- "TypeName": "Microsoft.AspNetCore.Components.RenderFragment",
- "Documentation": "\n \n Gets or sets the content to show when is empty\n or when the is zero.\n \n ",
- "Metadata": {
- "Common.PropertyName": "EmptyContent",
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.RenderFragment",
- "Components.ChildContent": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "ItemSize",
- "TypeName": "System.Single",
- "Documentation": "\n \n Gets the size of each item in pixels. Defaults to 50px.\n \n ",
- "Metadata": {
- "Common.PropertyName": "ItemSize",
- "Common.GloballyQualifiedTypeName": "global::System.Single"
- }
- },
- {
- "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 ",
- "Metadata": {
- "Common.GloballyQualifiedTypeName": "global::Microsoft.AspNetCore.Components.Web.Virtualization.ItemsProviderDelegate",
- "Common.PropertyName": "ItemsProvider",
- "Components.DelegateSignature": "True",
- "Components.GenericTyped": "True",
- "Components.IsDelegateAwaitableResult": "True"
- }
- },
- {
- "Kind": "Components.Component",
- "Name": "Items",
- "TypeName": "System.Collections.Generic.ICollection",
- "Documentation": "