Table of Contents

Class SetPrototype

Namespace
CSharpToJavaScript.APIs.JS.Ecma
Assembly
CSharpToJavaScript.dll
[To("FirstCharToLowerCase")]
public class SetPrototype : FunctionPrototype
Inheritance
SetPrototype
Derived
Inherited Members

Constructors

SetPrototype()

public SetPrototype()

Properties

Size

public int Size { get; }

Property Value

int

Methods

Add(dynamic)

public Set Add(dynamic value)

Parameters

value dynamic

Returns

Set

Clear()

public GlobalObject.Undefined Clear()

Returns

GlobalObject.Undefined

Delete(dynamic)

public bool Delete(dynamic value)

Parameters

value dynamic

Returns

bool

Entries()

public List<dynamic> Entries()

Returns

List<dynamic>

ForEach(Action, dynamic?)

public GlobalObject.Undefined ForEach(Action callbackfn, dynamic? thisArg = null)

Parameters

callbackfn Action
thisArg dynamic

Returns

GlobalObject.Undefined

Has(dynamic)

public bool Has(dynamic value)

Parameters

value dynamic

Returns

bool

Keys()

public List<dynamic> Keys()

Returns

List<dynamic>

Values()

public List<dynamic> Values()

Returns

List<dynamic>