FunctionPrototype.call(Object, Object, Object[]) Methode

Definition

Ruft die Funktion auf, die dieses Objekt darstellt.

Diese API unterstützt die Produktinfrastruktur und ist nicht für die direkte Verwendung aus Ihrem Code gedacht.

public:
 static System::Object ^ call(System::Object ^ thisob, System::Object ^ thisarg, ... cli::array <System::Object ^> ^ args);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Function_call)]
public static object call(object thisob, object thisarg, params object[] args);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject | Microsoft.JScript.JSFunctionAttributeEnum.HasVarArgs, Microsoft.JScript.JSBuiltin.Function_call)>]
static member call : obj * obj * obj[] -> obj
Public Shared Function call (thisob As Object, thisarg As Object, ParamArray args As Object()) As Object

Parameter

thisob
Object

Das Objekt, auf das diese Methode ausgeführt wird.

thisarg
Object

Der aktuelle Standardbereich. Entweder das enthaltene Objekt eines with Anweisungsbereichs oder des globalen Bereichs.

args
Object[]

Die Argumente, die als Array an die Funktion übergeben werden sollen.

Gibt zurück

Der Rückgabewert des Aufrufs der Funktion, die dieses Objekt darstellt.

Attribute

Gilt für:

Weitere Informationen