DocumentLoadCallback Delegate |
Represents a method to be called when a document is loaded.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public delegate void DocumentLoadCallback(
ref DocumentInfo info
)
Public Delegate Sub DocumentLoadCallback (
ByRef info As DocumentInfo
)
public delegate void DocumentLoadCallback(
DocumentInfo% info
)
type DocumentLoadCallback =
delegate of
info : DocumentInfo byref -> unit
Parameters
- info DocumentInfo
- A structure containing meta-information for the document.
Remarks
The callback can modify the document meta-information by specifying or overriding any of
its mutable properties.
See Also