public string AsString { get; }
Public ReadOnly Property AsString As String
Get
public:
property String^ AsString {
String^ get ();
}
member AsString : string with get
This property returns if this JsonValue represents a non-string primitive JavaScript literal. For non-string primitive types you can use the AsLiteral property to get their literal value.
This property gets the string value without quotes and escapes. To return it as a parseable JSON string, use the ToString method overloads instead.