Inheritance: NodeTableGraphViewCodeTemplateBase
コード例 #1
0
 public NodeTableRegister(string assemblyName, string nodeTable,
                          List <Tuple <string, int, List <Tuple <string, string> > > > edgeList, string userId)
 {
     CSharpTemplate = new NodeTableGraphViewCodeTemplate
     {
         EdgeList = edgeList
     };
     ScriptTemplate = new DeployScriptTemplate
     {
         AssemblyName = assemblyName,
         Type         = 0,
         NodeTable    = nodeTable,
         EdgeList     = edgeList,
         InputCount   = 1,
         UserId       = userId
     };
     _exceptionMessage = "Failed to compile nodetable Graph View defined function";
 }
コード例 #2
0
 public NodeTableRegister(string assemblyName, string nodeTable,
     List<Tuple<string, int, List<Tuple<string, string>>>> edgeList, string userId)
 {
     CSharpTemplate = new NodeTableGraphViewCodeTemplate
     {
        EdgeList =  edgeList
     };
     ScriptTemplate = new DeployScriptTemplate
     {
         AssemblyName = assemblyName,
         Type = 0,
         NodeTable = nodeTable,
         EdgeList = edgeList,
         InputCount = 1,
         UserId = userId
     };
     _exceptionMessage = "Failed to compile nodetable Graph View defined function";
 }