Web-Development-with-Blazor.../Chapter11/MyBlog/BlazorWebAssembly/Client/JSInteropSamples/NetToJS.razor.cs

8 lines
239 B
C#
Raw Normal View History

2023-02-17 15:28:17 +01:00
using System.Runtime.InteropServices.JavaScript;
namespace BlazorWebAssembly.Client.JSInteropSamples;
public partial class NetToJS
{
[JSImport("showAlert", "nettojs")]
internal static partial string ShowAlert(string message);
}