asked on September 25, 2024
Hello Team! I am using SDK to get some details of the file that I cannot get from the regular tools, for example, I uploaded a image to the repository, and I want to get the image Path of the image (I left an reference image)
I read with DocumentInfo I can get this value of a file, but I could not find the way to do it
What am I making wrong? I left the code I am using:
RepositoryRegistration myRepoReg = new RepositoryRegistration("Org.COM", "RepositoryName"); Session mySess = new Session(); mySess.IsSecure = true; mySess.LogIn("Username", "Password", myRepoReg); DocumentInfo docInfo = (DocumentInfo)Entry.GetEntryInfo(14496, mySess); SetTokenValue("xLocalName1", docInfo.GetLocalName().ToString()); SetTokenValue("xLocalName2", docInfo.GetAlternateEdoc());
Thanks in advanced!