gpt4 book ai didi

c# - silverlight 退出时调用 webservice

转载 作者:太空狗 更新时间:2023-10-30 00:35:56 27 4
gpt4 key购买 nike

当 silverlight 退出时我如何调用网络服务?我需要在 silverlight 退出时在服务器上发送更新。

最佳答案

Application.Exit 添加事件处理程序事件。在该处理程序中调用 WebService。 XAML/代码类似于:

<Application 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SilverlightApplication.App"
Exit="App_Exit">

</Application>

public partial class App : Application
{
private void App_Exit(object sender, EventArgs e)
{
// Code to call WebService goes here.
}
}

关于c# - silverlight 退出时调用 webservice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3228932/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com