InvokeMethod.TargetType 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
TargetObject 的类型。
public:
property Type ^ TargetType { Type ^ get(); void set(Type ^ value); };
public Type TargetType { get; set; }
member this.TargetType : Type with get, set
Public Property TargetType As Type
属性值
目标对象类型。
示例
下面的代码示例演示如何设置 InvokeMethod 活动的 TargetType 属性。 此示例摘自 使用 InvokeMethod 活动 示例。
new InvokeMethod
{
TargetType = typeof(Console),
MethodName = "WriteLine",
Parameters =
{
new InArgument<string>(ctx => string.Format("....the stored value is {0}", resultValue.Get(ctx))),
}
},
注解
只有当调用的方法为静态时,才必须设置此参数。