Hello,
namespace ButtonTry{ public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); } //When the users clicks on the Connect Button private void btnID_Click(object sender, RoutedEventArgs e) { WS.MainSoapClient proxy = new AfinosWS.MainSoapClient(); WS.ArrayOfString request_tab = new WS.ArrayOfString(); WS.ArrayOfString response_tab = new WS.ArrayOfString(); //Adding the login and password into the array that i will send to the WebService request_tab.Add(IDcase.Text); request_tab.Add(PWcase.Text); proxy.USER_FunctionsCompleted += (s, ea) => { response_tab = (AfinosWS.ArrayOfString)ea.Result; //Showing the returned data to the screen for debugging purposes ReturnValue.Text = response_tab[0]; Guid.Text = response_tab[1]; }; proxy.USER_FunctionsAsync("USER_LOGIN", request_tab); //I would like to get the guid(response_tab[1]) here in order to send it to another Webservice or functions. } }}