Where to get docs of classes?Solved

Sorry to bother but I simply get some trouble reading the docs. 
I'm trying to make my own Rust plugin but I cannot find a documentation for classes. 
For example, in the hooks doc we can learn something like this: 

object OnMeleeAttack(BasePlayer player, HitInfo info)
{
    Puts("OnMeleeAttack works!");
    return null;
}​
But what can I get from a "BasePlayer" or "HitInfo"? What can I do with them? 
In some plugins they use methods like Item.MoveToContainer, but where can I learn more about it and other things I can do with Item? 
This may sound stupid but I did try to find it, getting nothing like that or something saying there're no such docs. 

There isn't documentation for those, but you can find them by decompiling Assembly-CSharp.dll from the Rust server.

1LoZrv9Y2N20qxa.jpg Wulf

There isn't documentation for those, but you can find them by decompiling Assembly-CSharp.dll from the Rust server.

OK I got that. Thanks sincerely for your help. 

Locked automatically