Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! 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.