Azure Storage Queue Examples

Install Install following from Nuget Package Manager Azure.StorageQueues Add following reference… Add Message To Queue Note: Call to queue is not supported in Blazor Web Assembly. You will get this error message if you try to create a message. System.Security.Cryptography.Algorithms is not supported on this platform. Sources: https://docs.microsoft.com/en-us/azure/storage/queues/storage-dotnet-how-to-use-queues?tabs=dotnet https://docs.microsoft.com/en-us/dotnet/api/overview/azure/storage.queues-readme-pre

Blazor and Browser Local Storage using Blazored.LocalStorage

Blazored.LocalStorage Note: This is for .NET 5.0. Example: Program.cs of Blazor Client CartStateProvider.razor in Blazor Client App.razor in Blazor Client TestCart.razor Sources: https://www.syncfusion.com/faq/blazor/general/how-do-i-access-browser-local-storage-in-blazor https://www.nuget.org/packages/Blazored.LocalStorage/

Syncfusion Blazor SfUploader with Azure Storage

Windows Azure Storage SDK Need to download and install the Windows Azure Storage SDK first. Go to NuGet Package Manager and search for “WindowsAzure.Storage” Note: There is a new version of SDK “Azure.Storage.Blobs” but not all functions has been migrated over to the newer version. Example: Index.razor Note: The ID field must be “UploadFiles” to... » read more

Add Google Maps to Blazor App

index.html MyPage.razor MyPageBase.cs Adding Marker https://developers.google.com/maps/documentation/javascript/markers Sources: https://www.syncfusion.com/faq/blazor/general/how-can-i-add-google-maps-to-a-blazor-application https://developers.google.com/maps/documentation/javascript/markers

Blazor Url Parameter

Install the following for NuGet… Microsoft.AspNetCore.WebUtilities Example: https://localhost/Page1?SupplierId=123 Sources: https://www.c-sharpcorner.com/article/working-with-query-string-or-query-parameter-in-blazor/