'Declaration
Public Function New( _ ByVal operationResult As OperationResult, _ ByVal value As Object _ )
'Usage
Dim operationResult As OperationResult Dim value As Object Dim instance As New ValueResult(operationResult, value)
public ValueResult( OperationResult operationResult, object value )
public: ValueResult( OperationResult^ operationResult, Object^ value )
Parameters
- operationResult
- The operation result to be copied from.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - value
- A value that is a successful result of the operation.
The value of this parameter can be
null
(Nothing
in Visual Basic).