Multiple actions on a PDF link

Q: We need to fetch a PDF link having multiple actions ... how can we
achieve this ??
-----------------

A: You could use Action.GetNext() [http://www.pdftron.com/pdfnet/html/
classpdftron_1_1PDF_1_1Action.html]

C#
while (action.IsValid()) {
   action = new Action(a.GetNext());
}

C++
while (action.IsValid()) {
   action = Action(a.GetNext());
}