NewLateBinding.LateSetComplex 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
执行后期绑定属性设置或字段写入调用。 此帮助器方法不宜从您的代码直接调用。
public:
static void LateSetComplex(System::Object ^ Instance, Type ^ Type, System::String ^ MemberName, cli::array <System::Object ^> ^ Arguments, cli::array <System::String ^> ^ ArgumentNames, cli::array <Type ^> ^ TypeArguments, bool OptimisticSet, bool RValueBase);
public static void LateSetComplex (object Instance, Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, Type[] TypeArguments, bool OptimisticSet, bool RValueBase);
public static void LateSetComplex (object? Instance, Type? Type, string MemberName, object?[]? Arguments, string?[]? ArgumentNames, Type[]? TypeArguments, bool OptimisticSet, bool RValueBase);
static member LateSetComplex : obj * Type * string * obj[] * string[] * Type[] * bool * bool -> unit
Public Shared Sub LateSetComplex (Instance As Object, Type As Type, MemberName As String, Arguments As Object(), ArgumentNames As String(), TypeArguments As Type(), OptimisticSet As Boolean, RValueBase As Boolean)
参数
- Instance
- Object
公开属性或方法的调用对象的实例。
- Type
- Type
调用对象的类型。
- MemberName
- String
调用对象上的属性或方法的名称。
- Arguments
- Object[]
一个数组,包含要传递给正在被调用的属性或方法的参数。
- ArgumentNames
- String[]
参数名称的数组。
- TypeArguments
- Type[]
参数类型的数组;只用于传递参数类型的泛型调用。
- OptimisticSet
- Boolean
一个 Boolean
值,用于确定设置操作是否起作用。 如果确定已经在属性或字段中设置了中间值,则设置为 True
,否则设置为 False
。
- RValueBase
- Boolean
一个 Boolean
值,该值指定后期引用的基引用何时为 RValue
。 当后期引用的基引用为 True
时,则设置为 RValue
;这允许您在后期赋值给值类型的 RValues
的字段时生成运行时异常。 否则设置为 False
。
注解
与 LateSet 类似,除了此方法用于复杂表达式 (例如,括号中的表达式) 。