C# access browser from another class

I have a Form with an webBrowser component (from tools) - main window

I have a separate class with members and methods. In one of the methods I need an webBrowser component.

In the method I want to use the webBrowser from the Form, or use a webBrowser as a parameter.

public void navigate (int visits, Browser webBrowser)

Unfortunately I can’t use HttpWebRequest, I need an webBrowser component.

THX.