Exemplo n.º 1
0
 /// <summary>
 /// Generates the code from the contents of the address space.
 /// </summary>
 public async Task Validate(string inputPath)
 {
     // read and parse the file.
     Dictionary = (TypeDictionary)LoadInput(typeof(TypeDictionary), inputPath);
     await Validate();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Generates the code from the contents of the address space.
 /// </summary>
 public async Task Validate(Stream stream)
 {
     // read and parse the file.
     Dictionary = (TypeDictionary)LoadInput(typeof(TypeDictionary), stream);
     await Validate();
 }