To work, I have to code an external API to work with their patented database solution. Unfortunately, the documentation they provide is more of an example guide than the correct API documents, so itβs very simple in details, such as error codes, method returns, and exceptions.
So, for example, the class will have a .GetErrorCode () method, but I do not know what these error numbers mean, because they do not document which number corresponds to which error. In many cases, a method returns an object, without documentation of what type of object it actually returns. I have repeatedly turned to them for the necessary documentation, but they seem to think that details like the ones above are secret. So, are there any tools or methods that I can circumvent my limited or in some cases non-existent documents.
Please note that I am using Visual Studo 2005 and C # encoding in .Net.
And before anyone answers, βdon't use the API,β I have to, this is for work.
source
share