@@ -87,15 +87,15 @@ public interface IJavaScriptEngine : IDisposable
8787 /// <param name="scriptName">The friendly name by which to refer to this initialization script.</param>
8888 /// <param name="script">The JavaScript to be loaded on every page.</param>
8989 /// <returns>A task containing an <see cref="InitializationScript"/> object representing the script to be loaded on each page.</returns>
90- /// <exception cref="ArgumentNullException">If <paramref name="scriptName"/> is null.</exception>
90+ /// <exception cref="ArgumentNullException">If <paramref name="scriptName"/> is <see langword=" null"/> .</exception>
9191 Task < InitializationScript > AddInitializationScript ( string scriptName , string script ) ;
9292
9393 /// <summary>
9494 /// Asynchronously removes JavaScript from being loaded on every document load.
9595 /// </summary>
9696 /// <param name="scriptName">The friendly name of the initialization script to be removed.</param>
9797 /// <returns>A task that represents the asynchronous operation.</returns>
98- /// <exception cref="ArgumentNullException">If <paramref name="scriptName"/> is null.</exception>
98+ /// <exception cref="ArgumentNullException">If <paramref name="scriptName"/> is <see langword=" null"/> .</exception>
9999 Task RemoveInitializationScript ( string scriptName ) ;
100100
101101 /// <summary>
@@ -111,15 +111,15 @@ public interface IJavaScriptEngine : IDisposable
111111 /// </summary>
112112 /// <param name="script">The JavaScript to pin</param>
113113 /// <returns>A task containing a <see cref="PinnedScript"/> object to use to execute the script.</returns>
114- /// <exception cref="ArgumentNullException">If <paramref name="script"/> is null.</exception>
114+ /// <exception cref="ArgumentNullException">If <paramref name="script"/> is <see langword=" null"/> .</exception>
115115 Task < PinnedScript > PinScript ( string script ) ;
116116
117117 /// <summary>
118118 /// Unpins a previously pinned script from the browser.
119119 /// </summary>
120120 /// <param name="script">The <see cref="PinnedScript"/> object to unpin.</param>
121121 /// <returns>A task that represents the asynchronous operation.</returns>
122- /// <exception cref="ArgumentNullException">If <paramref name="script"/> is null.</exception>
122+ /// <exception cref="ArgumentNullException">If <paramref name="script"/> is <see langword=" null"/> .</exception>
123123 Task UnpinScript ( PinnedScript script ) ;
124124
125125 /// <summary>
0 commit comments