7 using System.Collections.Generic;
16 public class HasProcRequest : KineticaData
24 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
38 IDictionary<string, string>
options =
null)
48 public class HasProcResponse : KineticaData
54 public struct ProcExists
56 public const string TRUE =
"true";
57 public const string FALSE =
"false";
77 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string proc_name
Value of proc_name
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
string proc_name
Name of the proc to check for existence.
bool proc_exists
Indicates whether the proc exists or not.
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.