Replies: 1 comment 4 replies
-
What's your question exactly? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Each browser custom protocol is the same, but use different IResourceSchemeHandlerFactory copy
The implementation is as follows:
I use the same custom protocol for each browser instance,But the constructor is the browser object currently created
That is, each browser object has its own SchemeHandlerFactory
However, each time a new browser object is created, the existing browser object ISchemeHandlerFactory scheme will be replaced by a new one
It's like creating A browser A with A1 SchemeHandlerFactory and then creating A browser B with B1 SchemeHandlerFactory where browser A would want to use A1Factory but now browser A is using B1Factory
Beta Was this translation helpful? Give feedback.
All reactions