You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 5.5.3: Changed V8Update to use V8's GN-based build system; fixed VB.NET access to nonexistent JavaScript properties (GitHub Issue ClearFoundry#47, Take 2); fixed script object serialization via Json.NET (GitHub Issue ClearFoundry#60); added host item invocability assessment and patched V8's typeof implementation to return "object" for all non-delegate host objects (GitHub Issue ClearFoundry#62); added DocumentInfo and related APIs to address GitHub Issue ClearFoundry#46; fixed property bag invocation; updated deployment and API documentation. Tested with V8 6.8.275.28.
Copy file name to clipboardExpand all lines: ClearScript/HostFunctions.cs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -223,12 +223,12 @@ public object newArr(params int[] lengths)
223
223
/// <item>
224
224
/// <term><c>out</c></term>
225
225
/// <term>read-only</term>
226
-
/// <description>A reference to the host variable that can be passed as an <c><see href="http://msdn.microsoft.com/en-us/library/t3c3bfhx(VS.80).aspx">out</see></c> argument.</description>
226
+
/// <description>A reference to the host variable that can be passed as an <c><see href="https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/out-parameter-modifier">out</see></c> argument.</description>
227
227
/// </item>
228
228
/// <item>
229
229
/// <term><c>ref</c></term>
230
230
/// <term>read-only</term>
231
-
/// <description>A reference to the host variable that can be passed as a <c><see href="http://msdn.microsoft.com/en-us/library/14akc2c7(VS.80).aspx">ref</see></c> argument.</description>
231
+
/// <description>A reference to the host variable that can be passed as a <c><see href="https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/ref">ref</see></c> argument.</description>
232
232
/// </item>
233
233
/// </list>
234
234
/// </para>
@@ -305,7 +305,7 @@ public T del<T>(object scriptFunc)
305
305
/// This function creates a delegate that accepts <paramref name="argCount"/> arguments and
306
306
/// returns no value. The type of all parameters is <see cref="System.Object"/>. Such a
307
307
/// delegate is often useful in strongly typed contexts because of
0 commit comments