NAnt SDK Documentation - v0.85-nightly-2005-11-09

TypeFactory.LookupFunction Method 

[This is preliminary documentation and subject to change.]

Looks up a function by name.

[Visual Basic]
Public Shared Function LookupFunction( _
   ByVal methodName As String, _
   ByVal project As Project _
) As MethodInfo
[C#]
public static MethodInfo LookupFunction(
   string methodName,
   Project project
);

Parameters

methodName
The name of the function to lookup, including namespace prefix.
project
The Project in which the function is invoked.

Return Value

A MethodInfo representing the function, or a null reference (Nothing in Visual Basic) if a function with the given name does not exist.

Remarks

Missing <remarks> documentation for M:NAnt.Core.TypeFactory.LookupFunction(System.String,NAnt.Core.Project)

See Also

TypeFactory Class | NAnt.Core Namespace