 | XmlSerializationReadDelegate Delegate |
Called when an unknown task should be read from a xml document.
Namespace: Slash.AI.BehaviorTrees.EditorAssembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntaxpublic delegate void XmlSerializationReadDelegate(
XmlReader reader,
out ITask task
)
Public Delegate Sub XmlSerializationReadDelegate (
reader As XmlReader,
<OutAttribute> ByRef task As ITask
)
public delegate void XmlSerializationReadDelegate(
XmlReader^ reader,
[OutAttribute] ITask^% task
)
type XmlSerializationReadDelegate =
delegate of
reader : XmlReader *
task : ITask byref -> unit
Parameters
- reader
- Type: System.XmlXmlReader
Xml reader. - task
- Type: Slash.AI.BehaviorTrees.InterfacesITask
Task which is read.
See Also