Skip to content

JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (1 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IAsyncEnumerable<T> collection, From<T> toJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (2 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IEnumerable<T> collection, From<T> toJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (3 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IReadOnlyCollection<T> collection, From<T> toJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (4 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IReadOnlyList<T> collection, From<T> toJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (5 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(ICollection<T> collection, From<T> toJS, 
    To<T> fromJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (6 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IList<T> collection, From<T> toJS, To<T> fromJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (7 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(IReadOnlySet<T> collection, From<T> toJS, 
    To<T> fromJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<T> method (8 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<T>(ISet<T> collection, From<T> toJS, To<T> fromJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<TKey,TValue> method (9 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<TKey, TValue>(
    IReadOnlyDictionary<TKey, TValue> collection, From<TKey> keyToJS, From<TValue> valueToJS, 
    To<TKey> keyFromJS)

See Also


JSRuntimeContext.GetOrCreateCollectionWrapper<TKey,TValue> method (10 of 10)

C#
public JSValue GetOrCreateCollectionWrapper<TKey, TValue>(IDictionary<TKey, TValue> collection, 
    From<TKey> keyToJS, From<TValue> valueToJS, To<TKey> keyFromJS, To<TValue> valueFromJS)

See Also

Released under the MIT license