JSObject Class

Definition

Represents an object in JScript. This class belongs to the objects and functions category.

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

public ref class JSObject : Microsoft::JScript::ScriptObject, System::Collections::IEnumerable, System::Runtime::InteropServices::Expando::IExpando
public class JSObject : Microsoft.JScript.ScriptObject, System.Collections.IEnumerable, System.Runtime.InteropServices.Expando.IExpando
type JSObject = class
    inherit ScriptObject
    interface IEnumerable
    interface IExpando
    interface IReflect
Public Class JSObject
Inherits ScriptObject
Implements IEnumerable, IExpando
Inheritance
JSObject
Derived
Implements

Constructors

JSObject()

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

Initializes a new instance of the JSObject class.

Fields

engine

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)
field_table

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

Stores a list of fields that are dynamically added and removed from the object.

parent

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

Stores a reference to the parent object.

(Inherited from ScriptObject)

Properties

Item[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)
Item[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)
Item[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)
Item[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)
UnderlyingSystemType

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)

Methods

AddField(String)

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

Adds the specified field to the object.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetField(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)
GetFields(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)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetMember(String, BindingFlags)

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

Gets an array of MemberInfo objects that correspond to all members that match the specified name.

GetMembers(BindingFlags)

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

Gets an array of MemberInfo objects that correspond to all members of the current script object.

GetMethod(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)
GetMethod(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)
GetMethods(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)
GetParent()

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)
GetProperties(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)
GetProperty(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)
GetProperty(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)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
InvokeMember(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)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
SetMemberValue2(String, Object)

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

Sets the value of a field that was dynamically added to the object and stored in field_table.

ToString()

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

Returns a string that represents the current object.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

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

Returns an enumerator that iterates through the members of the object.

IExpando.AddMethod(String, Delegate)

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

Adds the specified method to the object. IExpando.AddMethod(String, Delegate) is not implemented in JScript.

IExpando.AddProperty(String)

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

Adds the specified property to the object. This method is not implemented in JScript.

IExpando.RemoveMember(MemberInfo)

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

Removes the specified member from the object.

Extension Methods

Cast<TResult>(IEnumerable)

Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filters the elements of an IEnumerable based on a specified type.

AsParallel(IEnumerable)

Enables parallelization of a query.

AsQueryable(IEnumerable)

Converts an IEnumerable to an IQueryable.

Applies to