Table of Contents

Method CreateJsSet

Namespace
DotNetBrowser.Frames
Assembly
DotNetBrowser.dll

CreateJsSet<T>(IEnumerable<T>)

Creates a new IJsSet and copies the contents of the IEnumerable<T> to it.

IJsSet CreateJsSet<T>(IEnumerable<T> collection)

Parameters

collection IEnumerable<T>

The collection to copy elements from.

Returns

IJsSet

An IJsSet that contains values from the provided collection.

Type Parameters

T

Remarks

The values are converted to their JavaScript representations during copying.

Exceptions

ObjectDisposedException

The IFrame object has already been disposed.