Class Result.LambdaResult
Represents the lambda result.
public sealed class Result.LambdaResult : Result
  - Inheritance
 - 
      
      
      Result.LambdaResult
 
- Inherited Members
 
Constructors
LambdaResult(Lambda)
Initializes a new instance of the Result.LambdaResult class.
public LambdaResult(Lambda lambda)
  Parameters
lambdaLambdaThe lambda value.
Properties
Lambda
Gets the lambda value.
public override Lambda Lambda { get; }
  Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
  Returns
- string
 A string that represents the current object.
Operators
implicit operator Lambda(LambdaResult)
Converts Result.LambdaResult to Lambda.
[ExcludeFromCodeCoverage]
public static implicit operator Lambda(Result.LambdaResult lambdaResult)
  Parameters
lambdaResultResult.LambdaResultThe lambda result.
Returns
- Lambda
 The lambda.