我如何在 windows 10 通用应用程序中使用 xsd.exe 生成的文件
how can i use the file that is generated by xsd.exe in windows 10 universal app
我正在使用 xsd.exe 从 .xsd 文件生成 .cs 文件。但是当我将文件添加到 windows 10 通用空白应用程序时,我收到错误消息 "missing an assembly reference" for System.SerializableAttribute() and System.ComponentModel.DesignerCategoryAttribute( “ code” ).我用@t.ouvre 的技巧解决了这个问题。然后在代码的任何特定行中都没有错误但是当我构建代码时我收到一条错误消息“在模块 System.dll 中找不到类型 System.ComponentModel.MarshalByValueComponent” 并且它没有准确指出错误所在。如何在windows 10 通用应用程序中使用xsd.exe 生成的文件?我需要对文件做些什么才能将其用于序列化和反序列化(在 UWP 中使用 DataContractSerializer)
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class request
{
private usertype userField;
private string versionField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public usertype user
{
get
{
return this.userField;
}
set
{
this.userField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string version
{
get
{
return this.versionField;
}
set
{
this.versionField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class usertype
{
private string emailField;
private string passwordField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string email
{
get
{
return this.emailField;
}
set
{
this.emailField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string password
{
get
{
return this.passwordField;
}
set
{
this.passwordField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class NewDataSet
{
private request[] itemsField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("request")]
public request[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
}
SerializableAttribute()
和 DesignerCategoryAttribute
uwp 应用程序不支持。
要生成可以直接复制到 UWP 应用程序中的成功 class,请使用以下提示:
这是在 UWP 应用程序中完成的,因此您可以继续执行此操作。
XML 序列化确实有一些限制,即您必须有一个不带任何参数的默认构造函数。
如果您打算序列化没有构造函数的 class,Microsoft 鼓励在此类用例中使用 DataContractSerializer。
现在代码很简单
- 首先实例化要序列化的obj。
- 创建一个新的 XmlSerializer 对象。
- 然后是 XmlWriter obj,因为它包含许多不同的编写器 classes 并且您需要实例化一个我为演示目的选择的字符串生成器。
- 然后只需简单地调用序列化器 obj 上的序列化,传入您的 obj 和 xmlwriter,xml writer 在字符串生成器 obj 中生成 op。
- 然后我把它变成一个字符串..从这里你可以用xml做任何事情..保存它或玩它..
刚刚添加了最后一个 toUpper 方法,因为我需要一行用于调试点.. 根本没有必要...
private void Button_Click( object sender , RoutedEventArgs e )
{
Animal a = new Animal("Sheep" , 4);
XmlSerializer m = new XmlSerializer(typeof(Animal));
StringBuilder op = new StringBuilder();
var x = XmlWriter.Create(op);
m.Serialize(x , a);
string s = op.ToString();
var p = s.ToUpper();
}
public class Animal
{
public Animal( string name , int legcount )
{
this.name = name;
this.legcount = legcount;
}
public Animal()
{
this.name = "default";
this.legcount = 10000000;
}
public string name { get; set; }
public int legcount { get; set; }
}
连载结果class
<?xml version="1.0" encoding="utf-16"?>
<Animal xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<name>Sheep</name>
<legcount>4</legcount>
</Animal>
更新:通过这种方法,您可以首先将所有序列化的 classes 复制到应用程序中,并在必要时在应用程序内部反序列化它们。
现在您需要做的就是将 xml 复制到您的新应用中,并使用我在上面展示的相同技术实施反序列化。
您可以假装缺少 类 (System.SerializableAttribute(),System.ComponentModel.DesignerCategoryAttribute),只需添加具有这些 类 定义的新文件:
namespace System
{
internal class SerializableAttribute : Attribute
{
}
}
namespace System.ComponentModel
{
internal class DesignerCategoryAttribute : Attribute
{
public DesignerCategoryAttribute(string _) { }
}
}
对于序列化和反序列化,你必须使用System.Runtime.Serialization.DataContractSerializer。例如:
DataContractSerializer serializer = new DataContractSerializer(typeof(request));
var r = new request { version = "test" };
using (MemoryStream ms = new MemoryStream())
{
serializer.WriteObject(ms, r);
ms.Seek(0, SeekOrigin.Begin);
using (var sr = new StreamReader(ms))
{
string xmlContent = sr.ReadToEnd();
Debug.WriteLine(xmlContent);
ms.Seek(0, SeekOrigin.Begin);
using (XmlReader reader = XmlReader.Create(sr))
{
var deserialized = serializer.ReadObject(reader) as request;
if (deserialized != null && deserialized.version == r.version)
{
Debug.WriteLine("ok");
}
}
}
}
我正在使用 xsd.exe 从 .xsd 文件生成 .cs 文件。但是当我将文件添加到 windows 10 通用空白应用程序时,我收到错误消息 "missing an assembly reference" for System.SerializableAttribute() and System.ComponentModel.DesignerCategoryAttribute( “ code” ).我用@t.ouvre 的技巧解决了这个问题。然后在代码的任何特定行中都没有错误但是当我构建代码时我收到一条错误消息“在模块 System.dll 中找不到类型 System.ComponentModel.MarshalByValueComponent” 并且它没有准确指出错误所在。如何在windows 10 通用应用程序中使用xsd.exe 生成的文件?我需要对文件做些什么才能将其用于序列化和反序列化(在 UWP 中使用 DataContractSerializer)
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class request
{
private usertype userField;
private string versionField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public usertype user
{
get
{
return this.userField;
}
set
{
this.userField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string version
{
get
{
return this.versionField;
}
set
{
this.versionField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class usertype
{
private string emailField;
private string passwordField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string email
{
get
{
return this.emailField;
}
set
{
this.emailField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string password
{
get
{
return this.passwordField;
}
set
{
this.passwordField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.81.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
public partial class NewDataSet
{
private request[] itemsField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("request")]
public request[] Items
{
get
{
return this.itemsField;
}
set
{
this.itemsField = value;
}
}
}
SerializableAttribute() 和 DesignerCategoryAttribute uwp 应用程序不支持。
要生成可以直接复制到 UWP 应用程序中的成功 class,请使用以下提示:
这是在 UWP 应用程序中完成的,因此您可以继续执行此操作。 XML 序列化确实有一些限制,即您必须有一个不带任何参数的默认构造函数。
如果您打算序列化没有构造函数的 class,Microsoft 鼓励在此类用例中使用 DataContractSerializer。
现在代码很简单
- 首先实例化要序列化的obj。
- 创建一个新的 XmlSerializer 对象。
- 然后是 XmlWriter obj,因为它包含许多不同的编写器 classes 并且您需要实例化一个我为演示目的选择的字符串生成器。
- 然后只需简单地调用序列化器 obj 上的序列化,传入您的 obj 和 xmlwriter,xml writer 在字符串生成器 obj 中生成 op。
- 然后我把它变成一个字符串..从这里你可以用xml做任何事情..保存它或玩它..
刚刚添加了最后一个 toUpper 方法,因为我需要一行用于调试点.. 根本没有必要...
private void Button_Click( object sender , RoutedEventArgs e ) { Animal a = new Animal("Sheep" , 4); XmlSerializer m = new XmlSerializer(typeof(Animal)); StringBuilder op = new StringBuilder(); var x = XmlWriter.Create(op); m.Serialize(x , a); string s = op.ToString(); var p = s.ToUpper(); } public class Animal { public Animal( string name , int legcount ) { this.name = name; this.legcount = legcount; } public Animal() { this.name = "default"; this.legcount = 10000000; } public string name { get; set; } public int legcount { get; set; } }
连载结果class
<?xml version="1.0" encoding="utf-16"?>
<Animal xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<name>Sheep</name>
<legcount>4</legcount>
</Animal>
更新:通过这种方法,您可以首先将所有序列化的 classes 复制到应用程序中,并在必要时在应用程序内部反序列化它们。
现在您需要做的就是将 xml 复制到您的新应用中,并使用我在上面展示的相同技术实施反序列化。
您可以假装缺少 类 (System.SerializableAttribute(),System.ComponentModel.DesignerCategoryAttribute),只需添加具有这些 类 定义的新文件:
namespace System
{
internal class SerializableAttribute : Attribute
{
}
}
namespace System.ComponentModel
{
internal class DesignerCategoryAttribute : Attribute
{
public DesignerCategoryAttribute(string _) { }
}
}
对于序列化和反序列化,你必须使用System.Runtime.Serialization.DataContractSerializer。例如:
DataContractSerializer serializer = new DataContractSerializer(typeof(request));
var r = new request { version = "test" };
using (MemoryStream ms = new MemoryStream())
{
serializer.WriteObject(ms, r);
ms.Seek(0, SeekOrigin.Begin);
using (var sr = new StreamReader(ms))
{
string xmlContent = sr.ReadToEnd();
Debug.WriteLine(xmlContent);
ms.Seek(0, SeekOrigin.Begin);
using (XmlReader reader = XmlReader.Create(sr))
{
var deserialized = serializer.ReadObject(reader) as request;
if (deserialized != null && deserialized.version == r.version)
{
Debug.WriteLine("ok");
}
}
}
}