Skip to content

[Feature]: Add "ApplicationLinks" into CoreWebView2PermissionKind #5140

Open
@attackmy

Description

@attackmy

Describe the feature/enhancement you need

Image

The scenario/use case where you would use this feature

  • Allow "Application Links (e.g. Teams (msteams://))" automatically as below code.
CoreWebView2.PermissionRequested += (sender, e) =>
{
  if (e.PermissionKind == CoreWebView2PermissionKind.ApplicationLinks)
  {
    e.State = CoreWebView2PermissionState.Allow;
  }
};

How important is this request to you?

Nice to have. There are other ways to tackle this, but having official API support would be beneficial.

Suggested implementation

We can allow "Application Links" manually.

Image

What does your app do? Is there a pending deadline for this request?

No response

Metadata

Metadata

Assignees

Labels

feature requestfeature requesttrackedWe are tracking this work internally.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions