BsonObject
namespace Newtonsoft.
Json.
Bson
{
internal class BsonString :
BsonValue
{
public int ByteCount { get; set; }
public bool IncludeLength { get; set; } =
includeLength;
public BsonString(
object value,
bool includeLength)
:
base(
value,
BsonType.
String)
{
}
}
}