ScriptFunction.GetPrototypeForConstructedObject Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the prototype object for this constructor function.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
Microsoft::JScript::ScriptObject ^ GetPrototypeForConstructedObject();
protected Microsoft.JScript.ScriptObject GetPrototypeForConstructedObject ();
member this.GetPrototypeForConstructedObject : unit -> Microsoft.JScript.ScriptObject
Protected Function GetPrototypeForConstructedObject () As ScriptObject
Returns
The prototype object for this constructor function.
Remarks
The prototype is the object to which the object delegates requests for properties or methods that it does not implement itself. For example, when you create a NumberObject by using a NumberConstructor, the prototype is a NumberPrototype.