JSIterable structure
C#
public struct JSIterable : IEnumerable<JSValue>, IJSValue<JSIterable>Public Members
| name | description |
|---|---|
| As<T>() | Tries to create a T struct from this instance. It returns null if the T struct cannot be created. |
| AsUnchecked<T>() | Creates a T struct from this instance without checking the enclosed handle type. It must be used only when the handle type is known to be correct. |
| CastTo<T>() | Creates a T struct from this instance. It throws InvalidCastException in case of failure. |
| Equals(…) | Compares two JS values using JS "strict" equality. |
| override Equals(…) | |
| GetEnumerator() | |
| override GetHashCode() | |
| Is<T>() | Checks if the T struct can be created from this instance`. |
| operator == | Compares two JS values using JS "strict" equality. |
| explicit operator | Explicitly converts a JSValue to a nullable JSIterable. (3 operators) |
| implicit operator | Implicitly converts a JSIterable to a JSValue. (2 operators) |
| operator != | Compares two JS values using JS "strict" equality. |
| struct Enumerator |
See Also
- struct JSValue
- interface IJSValue<TSelf>
- namespace Microsoft.JavaScript.NodeApi
- JSIterable.cs