Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
NullDocumentRef.cs
Go to the documentation of this file.
1namespace Fauna.Types;
2
7{
8 public NullDocumentRef(string id, Module collection, string cause) : base(id, collection)
9 {
10 Cause = cause;
11 }
18 public string Cause { get; }
19}
Represents a document ref.
Definition DocumentRef.cs:7
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8
Represents a null reference to a document, including a reason for its null state.
string Cause
Gets or sets the cause that the document is null.
NullDocumentRef(string id, Module collection, string cause)