Class WindowOpenLinkParameters
Parameters passed to window.open function
public sealed class WindowOpenLinkParameters
- Inheritance
-
objectWindowOpenLinkParameters
- Extension Methods
Properties
Features
A string containing a comma-separated list of window features. See features parameter of open function of window interface of a browser.
public string Features { get; init; }
Property Value
- string
Examples
"noreferrer"
Target
Name of the target browsing context. See target parameter of open function of window interface of a browser.
[Obsolete("Use LinkParameters.Target instead.")]
[ObsoleteSince(28, 2)]
public string Target { get; init; }
Property Value
- string
Examples
"_blank"