StackFrame Class

 

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

Represents a stack frame for executing code. This class contains methods for resolving scope. It belongs to the compilation and run-time state category.

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

System.Object
  Microsoft.JScript.ScriptObject
    Microsoft.JScript.StackFrame

[<Sealed>]
type StackFrame = 
    class
        inherit ScriptObject
        interface IActivationObject
    end

NameDescription
System_CAPS_pubpropertyItem(Double)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets a member of the script object that is designated by the specified Double index value.(Inherited from ScriptObject.)

System_CAPS_pubpropertyItem(Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets a member of the script object that is designated by the specified Int32 index value.(Inherited from ScriptObject.)

System_CAPS_pubpropertyItem(Object[])

This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets a member of the script object that is designated by the specified name, Double index value, or Int32 index value.(Inherited from ScriptObject.)

System_CAPS_pubpropertyItem(String)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets or sets a member of the script object that is designated by the specified name.(Inherited from ScriptObject.)

System_CAPS_pubpropertyUnderlyingSystemType

This API supports the product infrastructure and is not intended to be used directly from your code. Gets the type of the script object.(Inherited from ScriptObject.)

NameDescription
System_CAPS_pubmethodEquals(Object)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetDefaultThisObject()

This API supports the product infrastructure and is not intended to be used directly from your code. Gets the current default scope, which will be either the contained object of a with statement scope, or the global scope.

System_CAPS_pubmethodGetField(String, BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a field that has the specified name.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetField(String, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets 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_pubmethodGetFields(BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets an array of FieldInfo objects that correspond to all fields of the current script object.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetGlobalScope()

This API supports the product infrastructure and is not intended to be used directly from your code. 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_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetMember(String, BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Retrieves an array of MemberInfo objects that correspond to all members that match a specified name.(Overrides ScriptObject.GetMember(String, BindingFlags).)

System_CAPS_pubmethodGetMembers(BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Retrieves an array of MemberInfo objects that correspond to all members of the current object.(Overrides ScriptObject.GetMembers(BindingFlags).)

System_CAPS_pubmethodGetMemberValue(String, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. 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.

System_CAPS_pubmethodGetMethod(String, BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a method that has the specified name.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a method that has the specified name by using the specified selection criteria.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetMethods(BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets an array of MethodInfo objects that correspond to all methods of the current script object.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetParent()

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a reference to the parent object.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetProperties(BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets an array of PropertyInfo objects that correspond to all properties of the current script object.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetProperty(String, BindingFlags)

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a property that has the specified name.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a property that has the specified name by using the specified selection criteria.(Inherited from ScriptObject.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodInvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

This API supports the product infrastructure and is not intended to be used directly from your code. Invokes the specified member.(Inherited from ScriptObject.)

System_CAPS_pubmethodSystem_CAPS_staticPushStackFrameForMethod(Object, JSLocalField[], VsaEngine)

This API supports the product infrastructure and is not intended to be used directly from your code. Creates a new StackFrame object for a method and pushes it onto the global scope stack.

System_CAPS_pubmethodSystem_CAPS_staticPushStackFrameForStaticMethod(RuntimeTypeHandle, JSLocalField[], VsaEngine)

This API supports the product infrastructure and is not intended to be used directly from your code. Creates a new StackFrame object for a static method and pushes it onto the global scope stack.

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

NameDescription
System_CAPS_pubfieldclosureInstance

This API supports the product infrastructure and is not intended to be used directly from your code. Stores a reference to the caller of the current stack frame.

System_CAPS_pubfieldengine

This API supports the product infrastructure and is not intended to be used directly from your code. Stores a reference to the scripting engine.(Inherited from ScriptObject.)

System_CAPS_pubfieldlocalVars

This API supports the product infrastructure and is not intended to be used directly from your code. Stores the local variables for this stack frame.

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodIActivationObject.GetLocalField(String)

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

.NET Framework
Available since 1.1

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: