NDB.RemoteDB.BatchGetDocs C# (CSharp) Method

BatchGetDocs() public method

Create a new document. If the document has no ID field, it will be assigned one by the server.
public BatchGetDocs ( string server, string db, string content ) : string
server string The server URL
db string The database name
content string The document contents (JSON).
return string
        public string BatchGetDocs(string server, string db, string content)
        {
            return DoRequest(server + "/" + db+"/_all_docs?include_docs=true", "POST", content, "application/json");
        }