Feature/cookie support#2
Merged
Merged
Conversation
and ad Agentic Documentation
Add: Logic to update and remove cookies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant improvements to the project’s documentation, code organization, and .NET MAUI version support. It adds detailed architectural and contribution guidelines, refactors event argument classes into dedicated files, expands the
ExtWebViewAPI with cookie management methods, and upgrades the project and CI/CD pipelines to .NET 10 and MAUI 10.0.41.Documentation and Architecture Guidelines:
AGENTS.mdand.github/copilot-instructions.md, detailing project structure, code style, and extension patterns. [1] [2].NET and MAUI Version Upgrade:
ExtendedWebView.csprojand all CI/CD workflows from .NET 9/Maui 9 to .NET 10/Maui 10.0.41, ensuring compatibility with the latest .NET MAUI features. [1] [2] [3] [4]API and Event Model Enhancements:
EventArgsclasses (SourceChangedEventArgs,UrlChangedEventArgs,JavaScriptActionEventArgs,SetCookieRequestEventArgs,RemoveCookieRequestEventArgs,RemoveAllCookiesRequestEventArgs) into individual files underEvents/, and updated their implementations to use primary constructors and file-scoped namespaces. [1] [2] [3] [4] [5] [6]IExtWebView/ExtWebViewAPI to support cookie management via new events and methods:SetCookieAsync,UpdateCookieAsync,RemoveCookieAsync, andRemoveAllCookiesAsync, following the event-driven cross-platform pattern. [1] [2]Code Quality Improvements:
ExtWebViewand related event classes, improving maintainability and IntelliSense support. [1] [2] [3] [4] [5] [6] [7] [8]These changes modernize the codebase, clarify extension patterns, and make it easier for contributors to add new features in a maintainable, cross-platform way.