Exemplo n.º 1
0
 public ControlStreamFollow(JsonData csJson)
 {
     var follow = csJson.GetValue<JsonData>("follow");
     User = new ControlStreamUser(follow.GetValue<JsonData>("user"));
     Friends =
         (from JsonData friend in follow.GetValue<JsonData>("friends")
          select (ulong)friend)
         .ToList();
     Cursors = new Cursors(follow);
 }
Exemplo n.º 2
0
        public ControlStreamFollow(JsonData csJson)
        {
            var follow = csJson.GetValue <JsonData>("follow");

            User    = new ControlStreamUser(follow.GetValue <JsonData>("user"));
            Friends =
                (from JsonData friend in follow.GetValue <JsonData>("friends")
                 select(ulong) friend)
                .ToList();
            Cursors = new Cursors(follow);
        }