Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! 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.