Click or drag to resize

IFrame.CreateJsSet<T> Method

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

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

Parameters

collection
Type: System.Collections.Generic.IEnumerable<T>
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