Callback delegate that can be used to query results of a virtual Lookup(Type) call on objects that don't necessarily implement ILookup.

Namespace: yWorks.Support
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public delegate Object LookupCallback(
	Object subject,
	Type type
)
Visual Basic
Public Delegate Function LookupCallback ( _
	subject As Object, _
	type As Type _
) As Object

Parameters

subject
Type: System..::..Object
the subject for which a lookup shall be made
type
Type: System..::..Type
the type to look up

Return Value

an instance that can be assigned to type or null

See Also