扩展Exception分部类
本文关键字:Exception 扩展 | 更新日期: 2023-09-27 18:26:52
我使用的是wsdl.exe生成的示例SOAP代码。对象lastError
声明如下:
private Exception lastError;
Visual Studio在此行上生成时出错
String msg = lastError.Message;
表示
'Exception' does not contain a definition for 'Message' and no extension method 'Message' accepting a first argument of type 'Exception' could be found (are you missing a using directive or an assembly reference?)
:
wsdl.exe生成的Exception
类如下所示:
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(NestedException))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(PersistenceException))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(BbSecurityException))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://gradebook.ws.blackboard")]
public partial class Exception {
private object exception1Field;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("Exception", IsNullable=true)]
public object Exception1 {
get {
return this.exception1Field;
}
set {
this.exception1Field = value;
}
}
}
partial
类不会通过共享名称自动扩展任何内置或非分部类。如果您希望上面的Exception
类扩展System.Exception
,那么最简单的方法是添加另一个分部类并显式扩展它:
(在其他文件中)
public partial class Exception : System.Exception
{
}
不过,您应该注意名为Exception
的类的问题。从技术上讲,你不应该真正捕捉到通用的Exception
,但如果你的命名空间中有这样的东西,你可能不会捕捉到你认为的异常:
public void SomeMethod()
{
try
{
DoSomethingThatExcepts();
}
catch (Exception e)
{
//You are actually catching the defined Exception, not System.Exception
}
}
因此,在任何使用System.Exception
的地方,都可能需要完全限定名称。