Bloom.Book.Book.SetTopic C# (CSharp) 메소드

SetTopic() 공개 메소드

This gets called as a result of a UI action. It sets the new topic in our data, but doesn't do anything related to how it is displayed on the page. The way to think about this is that we're aiming for a more react™-style flow.
public SetTopic ( string englishTopicAsKey ) : void
englishTopicAsKey string
리턴 void
        public void SetTopic(string englishTopicAsKey)
        {
            _bookData.Set("topic",englishTopicAsKey,"en");
        }
Book