7 using System.Collections.Generic;
 
   79             public const string TRUE = 
"true";
 
   80             public const string FALSE = 
"false";
 
  125         public IDictionary<string, string> 
options { 
get; set; } = 
new Dictionary<string, string>();
 
  171                                    IDictionary<string, string> 
options = null)
 
  173             this.graph_name = graph_name ?? 
"";
 
  174             this.options = 
options ?? 
new Dictionary<string, string>();
 
  191         public IDictionary<string, string> 
info { 
get; set; } = 
new Dictionary<string, string>();
 
const string DELETE_PERSIST
If set to true, the graph is removed from the server and persist. 
 
bool result
Indicates a successful deletion. 
 
DeleteGraphRequest()
Constructs a DeleteGraphRequest object with default parameters. 
 
IDictionary< string, string > options
Optional parameters. 
 
DeleteGraphRequest(string graph_name, IDictionary< string, string > options=null)
Constructs a DeleteGraphRequest object with the specified parameters. 
 
string graph_name
Name of the graph to be deleted. 
 
IDictionary< string, string > info
Additional information. 
 
A set of results returned by Kinetica.deleteGraph(string,IDictionary{string, string}). 
 
const string SERVER_ID
Indicates which graph server(s) to send the request to. 
 
KineticaData - class to help with Avro Encoding for Kinetica 
 
A set of parameters for Kinetica.deleteGraph(string,IDictionary{string, string}). ...