CSHttpClientSample.Program.getValue C# (CSharp) Method

getValue() public static method

public static getValue ( ) : void
return void
        public static async void getValue()
        {
            while (true)
            {
                FirebaseResponse response = await client.GetAsync("screenshot");

                string ben = response.ResultAs<string>();
                Debug.WriteLine("WTF: " + ben);
                check = ben;
                
            }
            
            
        }