ITypeProvider2 Type
Represents additional, optional information for a type provider component
Instance members
Instance member |
Description
|
Full Usage:
this.ApplyStaticArgumentsForMethod
Parameters:
MethodBase
-
the provided method definition which has static parameters
methodNameWithArguments : string
-
the full name of the method that must be returned, including encoded representations of static parameters
staticArguments : objnull array
-
the values of the static parameters, indexed by name
Returns: MethodBase
The provided method definition corresponding to the given static parameter values
Modifiers: abstract |
Apply static arguments to a provided method that accepts static arguments. The provider must return a provided method with the given mangled name.
|
Full Usage:
this.GetStaticParametersForMethod
Parameters:
MethodBase
-
A method returned by GetMethod on a provided type
Returns: ParameterInfo array
The static parameters of the provided method, if any
Modifiers: abstract |
Get the static parameters for a provided method.
|