Click or drag to resize

IFrame.CreateJsMap<TKey, TValue> Method (IDictionary<TKey, TValue>)

Creates a new IJsMap and copies the contents of the IDictionary<TKey, TValue> to it.

Namespace:  DotNetBrowser.Frames
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.23.0
Syntax
C#
IJsMap CreateJsMap<TKey, TValue>(
	IDictionary<TKey, TValue> dictionary
)

Parameters

dictionary
Type: System.Collections.Generic.IDictionary<TKey, TValue>
The dictionary to copy elements from.

Type Parameters

TKey

[Missing <typeparam name="TKey"/> documentation for "M:DotNetBrowser.Frames.IFrame.CreateJsMap``2(System.Collections.Generic.IDictionary{``0,``1})"]

TValue

[Missing <typeparam name="TValue"/> documentation for "M:DotNetBrowser.Frames.IFrame.CreateJsMap``2(System.Collections.Generic.IDictionary{``0,``1})"]

Return Value

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