TransformText() public méthode

Create the template output
public TransformText ( ) : string
Résultat string
        private static string GenerateRegisterScript(string assemblyName, string path, int type, string nodeTable           = null,
                                                     List <Tuple <string, bool, List <Tuple <string, string> > > > edgeList = null, int inputCount = 1)
        {
            var template = new DeployScriptTemplate
            {
                AssemblyName = assemblyName,
                EdgeList     = edgeList,
                Path         = ObtainHexStringOfAssembly(path),
                InputCount   = inputCount,
                Type         = type,
                NodeTable    = nodeTable
            };

            return(template.TransformText());
        }
 private static string GenerateRegisterScript(string assemblyName, string path, int type, string nodeTable = null,
     List<Tuple<string, bool, List<Tuple<string, string>>>> edgeList = null,  int inputCount = 1)
 {
     var template = new DeployScriptTemplate
     {
         AssemblyName = assemblyName,
         EdgeList = edgeList,
         Path = ObtainHexStringOfAssembly(path),
         InputCount = inputCount,
         Type = type,
         NodeTable = nodeTable
     };
     return template.TransformText();
 }