DocumentContextCallback Delegate |
Represents a method that retrieves context information for a document.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public delegate IDictionary<string, Object> DocumentContextCallback(
DocumentInfo info
)
Public Delegate Function DocumentContextCallback (
info As DocumentInfo
) As IDictionary(Of String, Object)
public delegate IDictionary<String^, Object^>^ DocumentContextCallback(
DocumentInfo info
)
type DocumentContextCallback =
delegate of
info : DocumentInfo -> IDictionary<string, Object>
Parameters
- info DocumentInfo
- A structure containing meta-information for the document.
Return Value
IDictionaryString,
ObjectA property collection containing context information for the document.
See Also