varagrawal
varagrawal

Reputation: 3032

EventLogs using Silverlight

Is there a way to access the event logs of a server (or the local machine for now) using Silverlight and C#? The EventLog class is not available in Silverlight due to the System.Diagnostics namespace not being available for the Silverlight runtime.

Upvotes: 0

Views: 1023

Answers (1)

mslliviu
mslliviu

Reputation: 1128

You could get the log entries using a webservice (WCF for example) which can then be accessed from your SL app. Of course this works for server only. I don't know if it is possible for the client.

Upvotes: 1

Related Questions