NDB.RemoteDB.GetDocument C# (CSharp) Method

GetDocument() public method

Get a document.
public GetDocument ( string server, string db, string docid ) : string
server string The server URL
db string The database name
docid string The document ID.
return string
        public string GetDocument(string server, string db, string docid)
        {
            return DoRequest(server + "/" + db + "/" + docid, "GET");
        }

Same methods

RemoteDB::GetDocument ( string server, string db, string docid, string startkey, string endkey ) : string