IActivationObject Interface

 

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

Defines methods for resolving scope. This interface is implemented by all objects that take part in a scope hierarchy.

Namespace:   Microsoft.JScript
Assembly:  Microsoft.JScript (in Microsoft.JScript.dll)

type IActivationObject = interface end

NameDescription
System_CAPS_pubmethodGetDefaultThisObject()

This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, gets the current default scope. Either the contained object of a with statement scope, or the global scope.

System_CAPS_pubmethodGetField(String, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, returns a field that has the specified name by searching the scope hierarchy. This method searches only the scope that is specified by the lexical level.

System_CAPS_pubmethodGetGlobalScope()

This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, gets the global scope by searching the scope hierarchy until it finds a scope that includes static variables, for example, a module scope.

System_CAPS_pubmethodGetLocalField(String)

This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, gets the local declaration of a field that has the specified name. This is used at compile time for error checking.

System_CAPS_pubmethodGetMemberValue(String, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. When implemented in a class, gets the value of the specified member by searching the scope hierarchy. This method searches only the scope that is specified by the lexical level.

.NET Framework
Available since 1.1
Return to top
Show: