Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
NullNamedDocumentRef.cs
Go to the documentation of this file.
1namespace Fauna.Types;
2
8{
9 public NullNamedDocumentRef(string name, Module collection, string cause) : base(name, collection)
10 {
11 Cause = cause;
12 }
13
20 public string Cause { get; }
21}
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8
Represents a document ref that has a "name" instead of an "id". For example, a Role document referenc...
Represents a reference to a named document that is null, including a reason for its null state....
NullNamedDocumentRef(string name, Module collection, string cause)
string Cause
Gets or sets the cause that the document is null.