-
Notifications
You must be signed in to change notification settings - Fork 30
Resource Handling
mattkol edited this page Jul 13, 2021
·
3 revisions
Using StartUrl, resource files (html, css, javasctipt etc) can be loaded in 3 different ways:
- real website (e.g
https://bing.com
) - full filepath (e.g
C:\app\index.html
) - local resource (e.g
local://app/inAdex.html
) - OWIN/ASP.NET Core resource (e.g
https://edgesharp.test/
)
For real websites and a full filepath, no configuration of resource handlers required. Local resources will require either mapping a host to a folder or a resource handler. OWIN/ASP.NET Core resource handling will require an OWIN Startup.
EdgeSharp
Getting Started
Resource handling - How files are loaded
Inter-process Communication (IPC)
- Introduction
- AddHostObjectToScript
- PostWebMessage
- Ajax XHR
- Action Controllers
- Creating & Registering Host Objects
- Creating & Registering PostWebMessage Script Promise
- Registering Custom Request Scheme Handlers
Customizing and Extending EdgeSharp
EdgeSharp Samples
Debugging