Skip to content

Special publish #11182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion xml/Microsoft.JScript/Eval.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,13 @@
</Parameters>
<Docs>
<param name="source">The code to evaluate.</param>
<param name="unsafeOption">The string literal <c>unsafe</c> to enable unsafe evaluation; otherwise, <see langword="false" />.</param>
<param name="unsafeOption">
The string literal <c>unsafe</c> to enable unsafe evaluation; otherwise, <see langword="false" />.
<para>
<b>Important:</b> This parameter is not intended to serve as a security boundary.
Using <c>unsafeOption</c> should not be considered a substitute for proper security practices.
</para>
</param>
<param name="engine">A reference to the scripting engine to use to evaluate <paramref name="source" />.</param>
<summary>Evaluates the specified JScript code by using the specified engine and safety option.</summary>
<returns>The result of the evaluation. If <paramref name="source" /> is not a string, return value is <paramref name="source" />.</returns>
Expand Down