コード例 #1
0
        internal static FB_TitleSet _from_fetch(FB_Thread thread, JToken data)
        {
            (FB_User author, long at) = FB_TitleSet._parse_fetch(thread.session, data);

            return(new FB_TitleSet()
            {
                author = author,
                thread = thread as FB_Group,
                title = data?.get("thread_name")?.Value <string>(),
                at = at
            });
        }