다음을 통해 공유


FunctionPrototype.call(Object, Object, Object[]) 메서드

정의

이 개체가 나타내는 함수를 호출합니다.

이 API는 제품 인프라를 지원하며 코드에서 직접 사용되지 않습니다.

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

매개 변수

thisob
Object

이 메서드가 수행되는 개체입니다.

thisarg
Object

현재 기본 범위입니다. with 문 범위의 포함된 개체이거나 전역 범위입니다.

args
Object[]

함수에 배열로 전달할 인수입니다.

반환

Object

그러면 이 개체가 나타내는 함수 호출의 반환 값입니다.

특성

적용 대상

추가 정보