Example #1
0
 public GraphDSREST_Output(IGraphDS myGraphDS, String myServerID, Dictionary<String, IOInterface> myPlugins)
 {
     _Plugins = myPlugins;
     _ServerID = myServerID;
     _ErrorMsg = new GraphDSREST_Errors(_ServerID);
     _GraphDS = myGraphDS;
 }
Example #2
0
 public void Initialize(IGraphDS myGraphDS, ushort myPort, IPAddress myIPAddress)
 {
     _IGraphDS = myGraphDS;
     _ErrorMsg = new GraphDSREST_Errors(_ServerID);
     _RESTOutput = new GraphDSREST_Output(myGraphDS, _ServerID, _IOPlugins);
 }