routing table update event

  • Thread starter Thread starter Shiv Agarwal
  • Start date Start date
S

Shiv Agarwal

Hi,

I am writing a .NET application in C#. I have to display
the routing table in some formatted NMS way. Anyhow the
issue is that, whenever the routing table changes I want
to get an event. How can i register for the event ? And
what event is that ? Any smaple code ???

thanks
Shiv.
 
There is no such event. You will need to poll the routing table for changes.

Willy.
 
Ok ,can be used, but this only returns a time_created event [1], no further info is given so you will need to read the routing table
anyway.
Note that the WMI provider also uses polling to generate the event, so the time is not accurate but depends on the providers
internal polling interval.

[1] TIME_CREATED = "127099476735275392";

Willy.
 
Back
Top