Web-Development-with-Blazor.../Chapter12/MyBlog/BlazorWebAssembly/Client/JSInteropSamples/NetToJS.razor.cs
2023-02-17 15:28:17 +01:00

8 lines
239 B
C#

using System.Runtime.InteropServices.JavaScript;
namespace BlazorWebAssembly.Client.JSInteropSamples;
public partial class NetToJS
{
[JSImport("showAlert", "nettojs")]
internal static partial string ShowAlert(string message);
}