V8FastHostObjectConfigurator<TObject> Delegate |
Represents a method that prepares a fast host object configuration.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic delegate void V8FastHostObjectConfigurator<TObject>(
V8FastHostObjectConfiguration<TObject> configuration
)
where TObject : IV8FastHostObject
Public Delegate Sub V8FastHostObjectConfigurator(Of TObject As IV8FastHostObject) (
configuration As V8FastHostObjectConfiguration(Of TObject)
)
generic<typename TObject>
where TObject : IV8FastHostObject
public delegate void V8FastHostObjectConfigurator(
V8FastHostObjectConfiguration<TObject>^ configuration
)
type V8FastHostObjectConfigurator =
delegate of
configuration : V8FastHostObjectConfiguration<'TObject> -> unit
Parameters
- configuration V8FastHostObjectConfiguration<TObject>
- The configuration associated with TObject.
Type Parameters
- TObject
- The fast host object type.
See Also