Class StringValue
- Namespace
- CedarDotNet.Values
- Assembly
- CedarDotNet.dll
A Cedar value that represents a string.
public sealed record StringValue : Value, IEquatable<Value>, IEquatable<StringValue>
- Inheritance
-
StringValue
- Implements
- Inherited Members
Constructors
StringValue(string)
A Cedar value that represents a string.
public StringValue(string Value)
Parameters
Value
stringThe value.
Properties
Value
The value.
public string Value { get; init; }
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.