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.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

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