Ejemplo n.º 1
0
 public bool GetConcreteUser(ref GetJSON output)
 {
     if (!FetcherUsers.ContainsKey(output.DestPage))
     {
         return(false);
     }
     else
     {
         return(FetcherUsers.TryGetValue(output.DestPage, out output));
     }
 }
Ejemplo n.º 2
0
        public async Task <bool> RunConcreteUser(Pages which)
        {
            GetJSON output;

            if (FetcherUsers.TryGetValue(which, out output))
            {
                return(await RunConcreteUser(output));
            }
            else
            {
                return(false);
            }
        }