Load all the files (the exe and dll's) in a project with VS and use the object browser to review the current API.
Should get you all you need.
foreach (WoWGameObject Gobject in objectsList)
{
try
{
if (Gobject.Entry == 191009 && Gobject.Distance <= 30 && !Gobject.InUse)
{
WoWMovement.MoveStop();
Navigator.MoveTo(Gobject.Location);
slog("moving to port local");
Thread.Sleep(1500);
WoWMovement.MoveStop();
slog("clicking Org Portal");
Gobject.Interact();
}
}
catch (Exception ex) { }
}