AppEventsWM.EventClient.LoadHistory C# (CSharp) 메소드

LoadHistory() 공개 메소드

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

            return this;
        }