SoapExceptionDetail
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Xml.Serialization;
namespace kCura.EDDS.WebAPI.BulkImportManagerBase
{
[Serializable]
[GeneratedCode("System.Xml", "4.6.1055.0")]
[DebuggerStepThrough]
[DesignerCategory("code")]
[XmlType(Namespace = "http://www.kCura.com/EDDS/BulkImportManager")]
public class SoapExceptionDetail
{
private string exceptionTypeField;
private string exceptionMessageField;
private string exceptionTraceField;
private string exceptionFullTextField;
private string[] detailsField;
public string ExceptionType {
get {
return exceptionTypeField;
}
set {
exceptionTypeField = value;
}
}
public string ExceptionMessage {
get {
return exceptionMessageField;
}
set {
exceptionMessageField = value;
}
}
public string ExceptionTrace {
get {
return exceptionTraceField;
}
set {
exceptionTraceField = value;
}
}
public string ExceptionFullText {
get {
return exceptionFullTextField;
}
set {
exceptionFullTextField = value;
}
}
[XmlElement("Details")]
public string[] Details {
get {
return detailsField;
}
set {
detailsField = value;
}
}
}
}