...
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 | ||||
---|---|---|---|---|
| ||||
using System; using System.Collections.Generic; using System.Text; namespace TMXImporter.Congree { public class TmxUploadResponse { public string Id { get; set; } } } |
...