[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface)] |
To serialize an object as an encoded SOAP message, you must construct the XmlSerializer using an XmlTypeMapping created with the SoapReflectionImporter.ImportTypeMapping method of the SoapReflectionImporter class.
The SoapTypeAttribute can only be applied to class declarations.
The SoapTypeAttribute.IncludeInSchema property determines whether the resulting XML element type is included in the XML Schema document (.xsd) for the generated XML stream. To see the schema, compile the class into a DLL file. Pass the resulting file as an argument to the the conceptual topic at MSDN: xmlschemadefinitiontoolxsdexe. The tool generates the XML Schema for the XML stream generated when the class is serialized by an instance of the XmlSerializer class.
Setting a different namespace will cause Xsd.exe to write a different schema (.xsd) file for the XML generated when the class is serialized.
Group
. The SoapTypeAttribute is applied to the class, with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
ctor #1 | Overloaded:.ctor() Default constructor. This constructor is called by derived class constructors to initialize state in this type.Initializes a new instance of the SoapTypeAttribute class. |
ctor #2 | Overloaded:.ctor(string typeName) Initializes a new instance of the SoapTypeAttribute class, specifying the name of the XML type. |
ctor #3 | Overloaded:.ctor(string typeName, string ns) Initializes a new instance of the SoapTypeAttribute class, specifying the name and XML namespace of the type. |
IncludeInSchema | Read-write Gets or sets a value indicating whether to include the type in SOAP-encoded XML Schema documents. |
Namespace | Read-write Gets or sets the namespace of the XML type. |
TypeId (inherited from System.Attribute) |
Read-only See base class member description: System.Attribute.TypeId When implemented in a derived class, gets a unique identifier for this Attribute. |
TypeName | Read-write Gets or sets the name of the XML type. |
Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
GetHashCode (inherited from System.Attribute) |
See base class member description: System.Attribute.GetHashCode Returns the hash code for this instance. |
GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
IsDefaultAttribute (inherited from System.Attribute) |
See base class member description: System.Attribute.IsDefaultAttribute When overridden in a derived class, returns an indication whether the value of this instance is the default value for the derived class. |
Match (inherited from System.Attribute) |
See base class member description: System.Attribute.Match When overridden in a derived class, returns a value indicating whether this instance equals a specified object. |
ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public SoapTypeAttribute(); |
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
public SoapTypeAttribute( |
typeName
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
typeName
ns
If you set a SoapTypeAttribute.Namespace value for more than one type (that is, if you apply the attribute to more than one class with a different SoapTypeAttribute.Namespace value for each one), the the conceptual topic at MSDN: xmlschemadefinitiontoolxsdexe will generate a separate schema file (.xsd) for each type. This is because setting a different namespace for each type renders each type distinct from the others, necessitating that each type be written out as an independent entity.
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
public bool IncludeInSchema {get; set;}
|
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
public string Namespace {get; set;}
|
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
public virtual object TypeId {get;}
|
public string TypeName {get; set;}
|
Group
. The SoapTypeAttribute is applied to the class with the SoapTypeAttribute.TypeName set to "SoapGroupType". The SoapTypeAttribute is also overridden, changing the SoapTypeAttribute.TypeName to "Team". Both versions are serialized, resulting in two files: SoapType.xml and SoapType2.xml.using System; using System.IO; using System.Xml; using System.Xml.Serialization; // The SoapType is overridden when the // SerializeOverride method is called. [SoapType("SoapGroupType", "http://www.cohowinery.com")] public class Group { public string GroupName; public Employee[] Employees; } [SoapType("EmployeeType")] public class Employee{ public string Name; } public class Run { public static void Main() { Run test = new Run(); test.SerializeOriginal("SoapType.xml"); test.SerializeOverride("SoapType2.xml"); test.DeserializeObject("SoapType2.xml"); } public void SerializeOriginal(string filename){ // Create an instance of the XmlSerializer class that // can be used for serializing as a SOAP message. XmlTypeMapping mapp = (new SoapReflectionImporter()).ImportTypeMapping(typeof(Group)); XmlSerializer mySerializer = new XmlSerializer(mapp); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } public void SerializeOverride(string filename) { // Create an instance of the XmlSerializer class that // uses a SoapAttributeOverrides object. XmlSerializer mySerializer = CreateOverrideSerializer(); // Writing the file requires a TextWriter. TextWriter writer = new StreamWriter(filename); // Create an instance of the class that will be serialized. Group myGroup = new Group(); // Set the object properties. myGroup.GroupName = ".NET"; Employee e1 = new Employee(); e1.Name = "Pat"; myGroup.Employees=new Employee[]{e1}; // Serialize the class, and close the TextWriter. mySerializer.Serialize(writer, myGroup); writer.Close(); } private XmlSerializer CreateOverrideSerializer() { // Create and return an XmlSerializer instance used to // override and create SOAP messages. SoapAttributeOverrides mySoapAttributeOverrides = new SoapAttributeOverrides(); SoapAttributes soapAtts = new SoapAttributes(); // Override the SoapTypeAttribute. SoapTypeAttribute soapType = new SoapTypeAttribute(); soapType.TypeName = "Team"; soapType.IncludeInSchema = false; soapType.Namespace = "http://www.microsoft.com"; soapAtts.SoapType = soapType; mySoapAttributeOverrides.Add(typeof(Group),soapAtts); // Create an XmlTypeMapping that is used to create an instance // of the XmlSerializer. Then return the XmlSerializer object. XmlTypeMapping myMapping = (new SoapReflectionImporter( mySoapAttributeOverrides)).ImportTypeMapping(typeof(Group)); XmlSerializer ser = new XmlSerializer(myMapping); return ser; } public void DeserializeObject(string filename){ // Create an instance of the XmlSerializer class. XmlSerializer mySerializer = CreateOverrideSerializer(); // Reading the file requires a TextReader. TextReader reader = new StreamReader(filename); // Deserialize and cast the object. Group myGroup; myGroup = (Group) mySerializer.Deserialize(reader); Console.WriteLine(myGroup.GroupName); } }
~SoapTypeAttribute(); |
public override int GetHashCode(); |
public Type GetType(); |
public virtual bool IsDefaultAttribute(); |
The implementation of this method in a derived class compares the value of this instance to a standard, default value obtained by some means, then returns a Boolean value that indicates whether the value of this instance is equal to the standard. The standard value is typically coded as a constant in the implementation, or stored programmatically in a field used by the implementation.
obj
protected object MemberwiseClone(); |
public virtual string ToString(); |