GHI method signatures left unexplained... (need help finding documentation)

I am used to using eclipse, which typically allows someone to write code like this:

/**
  * This function will add a username to the database.
  *
  * @ var userName - The username to add
  * @ return  - True if the username was successfully added, otherwise false
  */
public boolean addUser(String userName) {
   //I dont need to look at the function internals, I can simply look at the 
   //block of comments above to see if it is the function I want to use or not.
   ...
}

However, these blocks of comments (inline documentation) seem to be non-existent or more likely- somewhere I am not used to looking. How can I find the documentation per-function. I am specifically interested in Gadgeteer.Modules.GHIElectronics.SerCam for the FEZ Cobra II (wifi) mainboard.
I have tried looking on msdn (microsoft documentation site), tinyclr, and ghielectronics.com; no luck!

Open the Gadgeteer graphic designer for a project which includes the module of interest, select the module of interest, and then hit F1.

1 Like

Thank you, I believe. That looks like you understood my question and answered it.

Happy coding