Fauna v10 .NET/C# Driver 1.0.0
 
Loading...
Searching...
No Matches
IPartialDocumentSerializer.cs
Go to the documentation of this file.
1using Fauna.Mapping;
2using Fauna.Types;
3
4namespace Fauna.Serialization;
5
6internal interface IPartialDocumentSerializer : ISerializer
7{
8 public object DeserializeDocument(MappingContext context, string? id, string? name, Module? coll, ref Utf8FaunaReader reader);
9}
A class representing the mapping context to be used during serialization and deserialization.
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8