Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

The only parameter the method expcects is the full path to the TMX file to be uploaded. The method returns a TMXUploadResponse shown in the code below.


Codeblock
languagec#
linenumberstrue
using System;
using System.Collections.Generic;
using System.Text;

namespace TMXImporter.Congree
{
    public class TmxUploadResponse
    {
        public string Id { get; set; }
    }
}

...