AppEventsWM.EventClient.LoadHistory C# (CSharp) Method

LoadHistory() public method

Loads the Event History of the current user
public LoadHistory ( EventStore eventStore ) : EventClient
eventStore EventStore The event store loaded from storage
return EventClient
        public EventClient LoadHistory(EventStore eventStore)
        {
            if (eventStore != null)
            {
                _eventStore = eventStore;
            }

            return this;
        }