OperateResultConvertT 方法 (T) |
将当前的结果对象转换到指定泛型的结果类对象,如果当前结果为失败,则返回指定泛型的失败结果类对象
Convert the current result object to the result class object of the specified generic type,
if the current result is a failure, then return the result class object of the specified generic type failure
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult<T> Convert<T>(
T content
)
Public Function Convert(Of T) (
content As T
) As OperateResult(Of T)
public:
generic<typename T>
OperateResult<T>^ Convert(
T content
)
member Convert :
content : 'T -> OperateResult<'T>
参数
- content
- 类型:T
如果操作成功将赋予的结果内容
类型参数
- T
- 结果类型
返回值
类型:
OperateResultT最终的结果类对象
参见