IFunctionProvider.Lookup(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an array of overloads for the given function name. This may return null instead of an empty array. The returned MethodInfos should be public static methods that can be freely invoked by IL in a different assembly. They should also be "pure" functions - with the output only depending on the inputs and NOT on any global state.
public System.Reflection.MethodInfo[] Lookup (string name);
abstract member Lookup : string -> System.Reflection.MethodInfo[]
Public Function Lookup (name As String) As MethodInfo()
Parameters
- name
- String