gpt4 book ai didi

c# - 无法捕获 System.Xaml.XamlParseException

转载 作者:行者123 更新时间:2023-11-30 22:26:18 25 4
gpt4 key购买 nike

我有一个空字符串,当我在 XmlReader 上使用它时,它当然给出了一个解析“根元素缺失”异常,我试图捕获它但是 try,catch 没有响应,有没有办法捕获此异常或检测到我的字符串不可解析。

System.IO.StringReader stringReader = new System.IO.StringReader("");

System.Xml.XmlReader xmlReader = System.Xml.XmlTextReader.Create(stringReader, new System.Xml.XmlReaderSettings());

try
{
object ob = System.Windows.Markup.XamlReader.Load(xmlReader);//
mycv = (Canvas)ob;
}
catch (Exception ex) //even if I use System.Xaml.XamlParseException
{
mycv = new Canvas();
}

最佳答案

object ob = System.Windows.Markup.XamlReader.Load(xmlReader);

此处您使用的是 Windows 标记 XamlReader,因此 System.Xaml.XamlParseException 不会在此处抛出,您应该捕获 System.Windows.Markup.XamlParseException

这应该对你有用 -

try
{
object ob = System.Windows.Markup.XamlReader.Load(xmlReader);//
mycv = (Canvas)ob;
}
catch (System.Windows.Markup.XamlParseException ex)
{
mycv = new Canvas();
}

关于c# - 无法捕获 System.Xaml.XamlParseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11919302/

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