Advertisement
Guest User

Untitled

a guest
May 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. using System;
  2. using System.Threading.Tasks;
  3. using ServiceReference;
  4.  
  5. namespace testeWCF
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args) => Run().Wait();
  10.  
  11. static async Task Run()
  12. {
  13. var wcf = new ServiceReference.VehicleInterfaceSoapClient(VehicleInterfaceSoapClient.EndpointConfiguration.VehicleInterfaceSoap12);
  14. var dados = await wcf.ListDispatchItemsByProviderAsync("RE8036", "JZ@RESGATE2018");
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement