1 instantiation of PageContext
Microsoft.AspNetCore.Components.WebView (1)
WebViewManager.cs (1)
226_currentPageContext = new PageContext(_dispatcher, serviceScope, _ipcSender, _jsComponents, baseUrl, startUrl);
9 references to PageContext
Microsoft.AspNetCore.Components.WebView (9)
IpcReceiver.cs (7)
32public async Task OnMessageReceivedAsync(PageContext pageContext, string message) 75private static void BeginInvokeDotNet(PageContext pageContext, string callId, string assemblyName, string methodIdentifier, long dotNetObjectId, string argsJson) 83private static void EndInvokeJS(PageContext pageContext, string argumentsOrError) 88private static void ReceiveByteArrayFromJS(PageContext pageContext, int id, byte[] data) 93private static void OnRenderCompleted(PageContext pageContext, long batchId, string errorMessageOrNull) 103private static void OnLocationChanged(PageContext pageContext, string uri, string? state, bool intercepted) 108private static void OnLocationChanging(PageContext pageContext, int callId, string uri, string? state, bool intercepted)
WebViewManager.cs (2)
32private PageContext _currentPageContext; 180var capturedCurrentPageContext = _currentPageContext;