gpt4 book ai didi

c# - 如何知道 Windows 应用商店应用类型可能抛出什么类型的异常?

转载 作者:太空宇宙 更新时间:2023-11-03 13:49:01 25 4
gpt4 key购买 nike

我正在使用这种方法:DatagramSocket.BindEndpointAsync()

我他妈的怎么知道它会抛出什么类型的异常?这offical sample显示像这样捕获所有异常:

        // Start listen operation. 
try
{
await listener.BindServiceNameAsync(ServiceNameForListener.Text);
rootPage.NotifyUser("Listening", NotifyType.StatusMessage);
}
catch (Exception exception)
{
CoreApplication.Properties.Remove("listener");

// If this is an unknown status it means that the error is fatal and retry will likely fail.
if (SocketError.GetStatus(exception.HResult) == SocketErrorStatus.Unknown)
{
throw;
}

rootPage.NotifyUser("Start listening failed with error: " + exception.Message, NotifyType.ErrorMessage);
}

但这似乎非常草率 - 肯定有更好的方法吗?

最佳答案

C# 不要求开发人员用它可以抛出的异常列表来标记每个方法(Java 有这个要求)。这就是为什么您必须依赖文档或检查源代码并找出答案的原因。

在这种情况下,Async/Await 不会改变任何东西。

关于c# - 如何知道 Windows 应用商店应用类型可能抛出什么类型的异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14304980/

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