Class PolicyDecisionEventArgs
Definition
- Namespace:
- Tizen.WebView
- Assembly:
- Tizen.WebView.dll
- API Level:
- 6
Arguments from the policy decision events. This class also provides the properties for Policy Decision of WebView.
public abstract class PolicyDecisionEventArgs : EventArgs
- Inheritance
- Derived
Properties
View SourceScheme
Gets the scheme.
Declaration
public string Scheme { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 6
View SourceUrl
Gets the Url.
Declaration
public string Url { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 6
Methods
View SourceIgnore()
Ignores the action which triggers this decision.
Declaration
public void Ignore()
API Level: 6
View SourceUse()
Accepts the action which triggers this decision.
Declaration
public void Use()