Click or drag to resize

IFrameCreateJsSetT Method

Creates a new IJsSet and copies the contents of the IEnumerableT to it.

Namespace:  DotNetBrowser.Frames
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IJsSet CreateJsSet<T>(
	IEnumerable<T> collection
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
The collection to copy elements from.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:DotNetBrowser.Frames.IFrame.CreateJsSet``1(System.Collections.Generic.IEnumerable{``0})"]

Return Value

Type: IJsSet
An IJsSet that contains values from the provided collection.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IFrame object has already been disposed.
Remarks
The values are converted to their JavaScript representations during copying.
See Also