OperateResultThenT 方法 (FuncOperateResultT) |
指定接下来要做的是内容,当前对象如果成功,就返回接下来的执行结果,如果失败,就返回当前对象本身。
Specify what you want to do next, return the result of the execution of the current object if it succeeds, and return the current object itself if it fails.
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult<T> Then<T>(
Func<OperateResult<T>> func
)
Public Function Then(Of T) (
func As Func(Of OperateResult(Of T))
) As OperateResult(Of T)
public:
generic<typename T>
OperateResult<T>^ Then(
Func<OperateResult<T>^>^ func
)
member Then :
func : Func<OperateResult<'T>> -> OperateResult<'T>
参数
- func
- 类型:SystemFuncOperateResultT
等待当前对象成功后执行的内容
类型参数
- T
- 泛型参数
返回值
类型:
OperateResultT返回整个方法链最终的成功失败结果
参见