All references to interfaces that represents the function reflectors.
public FunctionReflection[] Functions
{
get
{
var result = new FunctionReflection[this.Description.FunctionCount];
for (int i = 0; i < result.Length;i++)
{
result[i] = this.GetFunctionByIndex(i);
}
return result;
}
}
}
}