Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hi, all.
I am trying to parse the 'Security Log' because I have to make counting user login.
How can I parse it? Is it possible?
Thank you.
Solved! Go to Solution.
Why you want to parse it? You can access direcly from a service with SecurityLog Entity:
var logEntries = Logs["SecurityLog"].QueryLogEntries(....);
var logEntries = Logs["SecurityLog"].GetLogEntries(...);
Why you want to parse it? You can access direcly from a service with SecurityLog Entity:
var logEntries = Logs["SecurityLog"].QueryLogEntries(....);
var logEntries = Logs["SecurityLog"].GetLogEntries(...);
I want to count number of times users have logged in.
And I implemented it by your reply. Thank you.