Class Result.StringResult
Represents the string result.
public sealed class Result.StringResult : Result
  - Inheritance
 - 
      
      
      Result.StringResult
 
- Inherited Members
 
Constructors
StringResult(string)
Initializes a new instance of the Result.StringResult class.
public StringResult(string str)
  Parameters
strstringThe string value.
Properties
String
Gets the string value.
public override string String { 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 string(StringResult)
Converts Result.StringResult to string.
[ExcludeFromCodeCoverage]
public static implicit operator string(Result.StringResult stringResult)
  Parameters
stringResultResult.StringResultThe string result.
Returns
- string
 The string.