ObjectDataSourceStatusEventArgs.ReturnValue 属性

定义

获取由业务对象方法(如果有)作为对象返回的返回值。

public:
 property System::Object ^ ReturnValue { System::Object ^ get(); };
public object ReturnValue { get; }
member this.ReturnValue : obj
Public ReadOnly Property ReturnValue As Object

属性值

Object

一个对象,表示由业务对象方法返回的返回值;否则为 null(如果该业务对象不返回值)。

注解

ReturnValue 属性在构造函数中 ObjectDataSourceStatusEventArgs 设置。 该值设置为使用反射调用的业务对象方法调用的返回值。 如果业务方法不返回值 (,例如当业务对象方法返回 void) 时,该 ReturnValue 属性的计算结果为 null

适用于