JSFunctionAttribute Constructors

Definition

Initializes a new instance of the JSFunctionAttribute class.

Overloads

JSFunctionAttribute(JSFunctionAttributeEnum)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the JSFunctionAttribute class, using the specified calling conventions.

JSFunctionAttribute(JSFunctionAttributeEnum, JSBuiltin)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the JSFunctionAttribute class, using the specified calling conventions. The attribute identifies the specified built-in function.

JSFunctionAttribute(JSFunctionAttributeEnum)

Initializes a new instance of the JSFunctionAttribute class, using the specified calling conventions.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 JSFunctionAttribute(Microsoft::JScript::JSFunctionAttributeEnum value);
public JSFunctionAttribute (Microsoft.JScript.JSFunctionAttributeEnum value);
new Microsoft.JScript.JSFunctionAttribute : Microsoft.JScript.JSFunctionAttributeEnum -> Microsoft.JScript.JSFunctionAttribute
Public Sub New (value As JSFunctionAttributeEnum)

Parameters

value
JSFunctionAttributeEnum

The calling conventions of the method or constructor.

See also

Applies to

JSFunctionAttribute(JSFunctionAttributeEnum, JSBuiltin)

Initializes a new instance of the JSFunctionAttribute class, using the specified calling conventions. The attribute identifies the specified built-in function.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 JSFunctionAttribute(Microsoft::JScript::JSFunctionAttributeEnum value, Microsoft::JScript::JSBuiltin builtinFunction);
public JSFunctionAttribute (Microsoft.JScript.JSFunctionAttributeEnum value, Microsoft.JScript.JSBuiltin builtinFunction);
new Microsoft.JScript.JSFunctionAttribute : Microsoft.JScript.JSFunctionAttributeEnum * Microsoft.JScript.JSBuiltin -> Microsoft.JScript.JSFunctionAttribute
Public Sub New (value As JSFunctionAttributeEnum, builtinFunction As JSBuiltin)

Parameters

value
JSFunctionAttributeEnum

The calling conventions of the method or constructor.

builtinFunction
JSBuiltin

The built-in function that this attribute identifies.

Applies to