How to extract a hyperlink from word document?

Hi,
How can I extract a Hyperlink from word Document using DocumentVisitor?
I know that I can detect it from :

public override VisitorAction VisitFieldStart(FieldStart fieldStart)
    if (fieldStart.FieldType== FieldType.FieldHyperlink)
        fieldStart. ?
    return VisitorAction.Continue;
}

I need to extract the URL and the nametext.
Regards

Hi
Thanks for your request. I think this article could help you to resolve your issue:
https://docs.aspose.com/words/net/working-with-hyperlinks/
Best regards.