j'ai pas accès a msn au boulot 
pour ton projet, normalement c'est en appelant ton webservice comme tu l'as fait que tu as accès au méthodes....
après tu peux voir ce que les méthodes te retournent.... (dataset, objet...)
normalement tu procèdes comme ca :
1 2 3
| srFormation.Service1Client myService = new SlGestionFormation.srFormation.Service1Client();//ref a ton wcf
myService.GetAllFormationForAllIdCompleted += new EventHandler<nSlGestionFormation.srFormation.GetAllFormationForAllIdCompletedEventArgs>(myService_GetAllFormationForAllIdCompleted);
myService.GetAllFormationForAllIdAsync(ton param); |
tu déclares ta méthode asynchrone et ensuite tu la lances....
dans ton code tu vas avoir un truc dans le genre
void myService_GetAllFormationForAllIdCompleted(object sender, n
qui va te permettre d'écrire la logique du traitement
connais tu le nom des méthodes que tu dois appeler ???
Partager