| OperateResultT1, T2, T3Then 方法 (FuncT1, T2, T3, OperateResult) | 
 
            指定接下来要做的是内容,当前对象如果成功,就返回接下来的执行结果,如果失败,就返回当前对象本身。
            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.5.1.0 (12.5.1.0)
 语法
语法public OperateResult Then(
	Func<T1, T2, T3, OperateResult> func
)
Public Function Then ( 
	func As Func(Of T1, T2, T3, OperateResult)
) As OperateResult
public:
OperateResult^ Then(
	Func<T1, T2, T3, OperateResult^>^ func
)
member Then : 
        func : Func<'T1, 'T2, 'T3, OperateResult> -> OperateResult 
参数
- func
- 类型:SystemFuncT1, T2, T3, OperateResult
 等待当前对象成功后执行的内容
返回值
类型:
OperateResult返回整个方法链最终的成功失败结果
 参见
参见