Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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.