NewLateBinding.LateCanEvaluate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示调用是否需要后期绑定计算。 此帮助器方法不宜从您的代码直接调用。
public:
static bool LateCanEvaluate(System::Object ^ instance, Type ^ type, System::String ^ memberName, cli::array <System::Object ^> ^ arguments, bool allowFunctionEvaluation, bool allowPropertyEvaluation);
public static bool LateCanEvaluate (object instance, Type type, string memberName, object[] arguments, bool allowFunctionEvaluation, bool allowPropertyEvaluation);
static member LateCanEvaluate : obj * Type * string * obj[] * bool * bool -> bool
Public Shared Function LateCanEvaluate (instance As Object, type As Type, memberName As String, arguments As Object(), allowFunctionEvaluation As Boolean, allowPropertyEvaluation As Boolean) As Boolean
参数
- instance
- Object
公开属性或方法的调用对象的实例。
- type
- Type
调用对象的类型。
- memberName
- String
调用对象上的属性或方法的名称。
- arguments
- Object[]
一个数组,包含要传递给正在被调用的属性或方法的参数。
- allowFunctionEvaluation
- Boolean
一个 Boolean
值,该值指定是否允许函数计算。
- allowPropertyEvaluation
- Boolean
一个 Boolean
值,该值指定是否允许属性计算。
返回
一个 Boolean
值,该值指示表达式是否需要后期绑定计算。