Setting the service URL at runtime

后端 未结 3 1861
伪装坚强ぢ
伪装坚强ぢ 2020-12-06 22:17

When I am adding the \"Web Reference\" we are giving the address to the asmx page to visual studio.

How Can I set this at run time?

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-06 22:59

    I would have upvoted one of the other answers - they're almost correct.

    using (YourService service = new YourService())
    {
        service.Url = "http://some.other.url/"; 
    
        // Now you're ready to call your service method 
        service.SomeUsefulMethod(); 
    }
    

    If a using block is not used, and an exception is thrown, then resources like network connections can be leaked.

提交回复
热议问题