J'ai eu le même problème aujourd'hui. Ce n'est certainement pas la meilleure solution, mais je l'ai résolu de cette façon dans mon projet et cela fonctionne pour ce dont j'ai besoin :
- Désérialiser XML en Json
-
Désérialiser Json en Bson
using (var reader = new StreamReader(context.Request.Body)) { var body = reader.ReadToEnd(); // read input string XmlDocument doc = new XmlDocument(); doc.LoadXml(body); // String to XML Document string jsonText = JsonConvert.SerializeXmlNode(doc); //XML to Json var bsdocument = BsonSerializer.Deserialize<BsonDocument>(jsonText); //Deserialize JSON String to BSon Document var mcollection = Program._database.GetCollection<BsonDocument>("test_collection_05"); await mcollection.InsertOneAsync(bsdocument); //Insert into mongoDB }