Beispiel #1
0
        public async void Validate()
        {
            var ServiceClient = new SALLab04.ServiceClient();
            var SvcResult     = await ServiceClient.ValidateAsync(Email, Password, Device);

            string Result = $"{SvcResult.Status}\n{SvcResult.Fullname}\n{SvcResult.Token}";

            Dialog.Show(Result);
        }
Beispiel #2
0
        public async void Validate()
        {
            var serviceClient = new SALLab04.ServiceClient();
            var svcResult     = await serviceClient.ValidateAsync(EMail, Password, Device);

            string result = $"{svcResult.Status}\n{svcResult.Fullname}\n{svcResult.Token}";

            // Invocar el código específico de la plataforma
            _dialog.Show(result);
        }
Beispiel #3
0
        public async void Validate()
        {
            string Result;
            //Result = "¡Aplicacion Validada!";
            //Dialog.show(Result);
            var ServiceClient = new SALLab04.ServiceClient();
            var SvcResult     = await ServiceClient.ValidateAsync(EMail, Password, Device);

            Result = $"{SvcResult.Status}\n{SvcResult.Fullname}\n{SvcResult.Token}";
            Dialog.show(Result);
        }
        public async void Validate()
        {
            string result;

            var serviceClient = new SALLab04.ServiceClient();
            var svcResult     = await serviceClient.ValidateAsync(
                email, password, device
                );

            result = $"{svcResult.Status}\n{svcResult.Fullname}\n{svcResult.Token}";


            dialog.Show(result);
        }
Beispiel #5
0
        public async void Validate()
        {
            string Result;

            /** Aquí se puede implementar la funcionalidad principal de la clase. Por el momento solo se devuelve
             * una cadena fija. */
            var ServiceClient = new SALLab04.ServiceClient();
            var SvcResult     = await ServiceClient.ValidateAsync(Email, Password, Device);

            //Result = "¡Aplicación Validada!";
            Result = $"{SvcResult.Status}\n{SvcResult.Fullname}\n{SvcResult.Token}";

            /** Invocar al código específico de la plataforma*/
            Dialog.Show(Result);
        }