Radio frequency hooks?

Is there a way to hook in to the RF signals that are being transmitted?

Like the once RF broadcaster, excavator and RF transmitter emit? 

THX!

Not at the moment.
Are there any plans on supporting hooks for electric components?
You don't need a hook to get the currently broadcasting frequencies. Check out global::RFManager._broadcasters
Oke thank you!
Hello or can I find a documentation that will give me the global variable that can be used in our plugins.

for example: RFManager._broadcasters, RFManager.GetListenList (frequency), etc ....

Because I regularly use the Umod doc available: https://umod.org/documentation/games/rust

but I think it's still limited, we find the hooks, but not the definition or global variable.

Thank you in advance it will help me greatly in the development of my plugins.
That stuff is part of Rust not uMod, so there is no official documentation. You kind of just have to figure it out yourself, or ask here.
okok because I want to know if there is for example RFManager.send (frequency) or a function of this type to send an RF signal to an RF receiver. is it possible ?
RFManager.AddBroadcaster(int frequency, IRFObject obj) is what you would use. You create a class that implements the IRFObject interface and pass an instance of it to that function along with the frequency. You're using dnSpy, right?