Skip to content

Commit 8668387

Browse files
Migrated all projects to latest TFM and Updated NuGet Packages
1 parent 9cf1bb1 commit 8668387

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

ListBox/NET10/ListBox_ServerApp/Components/Pages/How To/AddRemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
private async Task addData()
3737
{
38-
await ListBoxObj.AddItems(Item);
38+
await ListBoxObj.AddItemsAsync(Item);
3939
}
4040
}

ListBox/NET10/ListBox_ServerApp/Components/Pages/How To/RemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737

3838
private async Task removeData()
3939
{
40-
await ListBoxObj.RemoveItem(Item);
40+
await ListBoxObj.RemoveItemAsync(Item);
4141
}
4242
}

ListBox/NET10/ListBox_ServerApp/Components/Pages/How To/Selectitems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
public string[] Value = new string[] { "Bugatti Chiron" };
3030
private async Task created(object args)
3131
{
32-
await ListBoxObj.SelectItems(this.Value, true);
32+
await ListBoxObj.SelectItemsAsync(this.Value, true);
3333
}
3434
}

ListBox/NET10/ListBox_WasmApp/ListBox_WasmApp.Client/Pages/How To/AddRemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
private async Task addData()
3737
{
38-
await ListBoxObj.AddItems(Item);
38+
await ListBoxObj.AddItemsAsync(Item);
3939
}
4040
}

ListBox/NET10/ListBox_WasmApp/ListBox_WasmApp.Client/Pages/How To/RemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737

3838
private async Task removeData()
3939
{
40-
await ListBoxObj.RemoveItem(Item);
40+
await ListBoxObj.RemoveItemAsync(Item);
4141
}
4242
}

ListBox/NET10/ListBox_WasmApp/ListBox_WasmApp.Client/Pages/How To/Selectitems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
public string[] Value = new string[] { "Bugatti Chiron" };
3030
private async Task created(object args)
3131
{
32-
await ListBoxObj.SelectItems(this.Value, true);
32+
await ListBoxObj.SelectItemsAsync(this.Value, true);
3333
}
3434
}

ListBox/NET8/ListBox_ServerApp/Components/Pages/How To/AddRemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
private async Task addData()
3737
{
38-
await ListBoxObj.AddItems(Item);
38+
await ListBoxObj.AddItemsAsync(Item);
3939
}
4040
}

ListBox/NET8/ListBox_ServerApp/Components/Pages/How To/RemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737

3838
private async Task removeData()
3939
{
40-
await ListBoxObj.RemoveItem(Item);
40+
await ListBoxObj.RemoveItemAsync(Item);
4141
}
4242
}

ListBox/NET8/ListBox_ServerApp/Components/Pages/How To/Selectitems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
public string[] Value = new string[] { "Bugatti Chiron" };
3030
private async Task created(object args)
3131
{
32-
await ListBoxObj.SelectItems(this.Value, true);
32+
await ListBoxObj.SelectItemsAsync(this.Value, true);
3333
}
3434
}

ListBox/NET8/ListBox_WasmApp/ListBox_WasmApp.Client/Pages/How To/AddRemoveItems.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
private async Task addData()
3737
{
38-
await ListBoxObj.AddItems(Item);
38+
await ListBoxObj.AddItemsAsync(Item);
3939
}
4040
}

0 commit comments

Comments
 (0)