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.23.2
Syntax 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 Exception | Condition |
---|
ObjectDisposedException | The IFrame object has already been disposed. |
Remarks The values are converted to their JavaScript representations during copying.
See Also