DocumentInfoContextCallback Property |
Gets or sets an optional context callback for the document.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public DocumentContextCallback ContextCallback {
get;
set; }
Public Property ContextCallback As DocumentContextCallback
Get
Set
public:
property DocumentContextCallback^ ContextCallback {
DocumentContextCallback^ get ();
void set (DocumentContextCallback^ value);
}
member ContextCallback : DocumentContextCallback with
get, set
Property Value
DocumentContextCallbackRemarks
This property currently applies only to modules. If specified, the callback is invoked
the first time the module attempts to retrieve its context information. The properties
it returns are made available to the module implementation. This mechanism can be used
to expose host resources selectively, securely, and without polluting the script
engine's global namespace.
Use
import.meta
to access the context information of a Standard JavaScript
module. In a CommonJS module, use module.meta.
See Also