SoapAttributeAttribute.DataType Propiedad

Definición

Obtiene o establece el tipo de datos XSD (Lenguaje de definición de esquemas XML) del atributo SOAP generado por XmlSerializer.

public string DataType { get; set; }

Valor de propiedad

String

Un tipo de datos de esquema XML.

Excepciones

El tipo de datos de esquemas XML especificado no se puede asignar al tipo de datos .NET.

Ejemplos

En el ejemplo siguiente se serializa una clase que contiene varios campos a los que se aplica .SoapAttributeAttribute La DataType propiedad se establece para los GroupNumber campos y Today .

using System;
using System.IO;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
using System.Xml.Schema;

[SoapInclude(typeof(Vehicle))]
public class Group
{
   [SoapAttribute (Namespace = "http://www.cpandl.com")]
   public string GroupName;

   [SoapAttribute(DataType = "base64Binary")]
   public Byte [] GroupNumber;

   [SoapAttribute(DataType = "date", AttributeName = "CreationDate")]
   public DateTime Today;
   [SoapElement(DataType = "nonNegativeInteger", ElementName = "PosInt")]
   public string PostitiveInt;

   public Vehicle GroupVehicle;
}

public class Vehicle
{
   public string licenseNumber;
}

public class Run
{
   public static void Main()
   {
      Run test = new Run();
      test.SerializeObject("SoapAtts.xml");
      test.DeserializeObject("SoapAtts.xml");
   }
   public void SerializeObject(string filename)
   {
      // Create an instance of the XmlSerializer class that
      // can generate encoded SOAP messages.
      XmlSerializer mySerializer =  ReturnSOAPSerializer();

      Group myGroup=MakeGroup();
      // Writing the file requires a TextWriter.
      XmlTextWriter writer =
      new XmlTextWriter(filename, Encoding.UTF8);
      writer.Formatting = Formatting.Indented;
      writer.WriteStartElement("wrapper");
      // Serialize the class, and close the TextWriter.
      mySerializer.Serialize(writer, myGroup);
      writer.WriteEndElement();
      writer.Close();
   }

   private Group MakeGroup(){
      // Create an instance of the class that will be serialized.
      Group myGroup = new Group();

      // Set the object properties.
      myGroup.GroupName = ".NET";

      Byte [] hexByte = new Byte[2]{Convert.ToByte(100),
      Convert.ToByte(50)};
      myGroup.GroupNumber = hexByte;

      DateTime myDate = new DateTime(2002,5,2);
      myGroup.Today = myDate;
      myGroup.PostitiveInt= "10000";
      myGroup.GroupVehicle = new Vehicle();
      myGroup.GroupVehicle.licenseNumber="1234";
      return myGroup;
   }   	

   public void DeserializeObject(string filename)
   {
      // Create an instance of the XmlSerializer class that
      // can generate encoded SOAP messages.
      XmlSerializer mySerializer =  ReturnSOAPSerializer();

      // Reading the file requires an  XmlTextReader.
      XmlTextReader reader=
      new XmlTextReader(filename);
      reader.ReadStartElement("wrapper");

      // Deserialize and cast the object.
      Group myGroup;
      myGroup = (Group) mySerializer.Deserialize(reader);
      reader.ReadEndElement();
      reader.Close();
   }

   private XmlSerializer ReturnSOAPSerializer(){
      // Create an instance of the XmlSerializer class.
      XmlTypeMapping myMapping =
      (new SoapReflectionImporter().ImportTypeMapping
      (typeof(Group)));
       return new XmlSerializer(myMapping);
   }
}

Comentarios

En la tabla siguiente se enumeran los tipos de datos simples de esquema XML con their.NET equivalentes.

Para los tipos de datos y esquema base64Binary XML, use una matriz de Byte estructuras y aplique un SoapAttributeAttribute con el DataType establecido en "base64Binary" o "hexBinary", según hexBinary corresponda. Para los tipos de datos y date esquema time XML, use el DateTime tipo y aplique con SoapAttributeAttribute el DataType establecido en "fecha" o "hora".

Para cada tipo de datos de esquema XML asignado a una cadena, aplique con SoapAttributeAttribute su DataType propiedad establecida en el tipo de datos esquema XML. Tenga en cuenta que esto no cambia el formato de serialización, solo el esquema del miembro.

Nota

La propiedad distingue mayúsculas de minúsculas, por lo que debe establecerla exactamente en uno de los tipos de datos del esquema XML.

Nota

Pasar datos binarios como un elemento XML es más eficaz y pasarlos como un atributo XML.

Para obtener más información sobre los tipos de datos de esquema XML, vea el documento World Wide Consortium denominado Esquema XML Parte 2: Tipos de datos](https://www.w3.org/TR/xmlschema-2/).

Tipo de datos XSD Tipo de datos .NET
anyURI String
base64Binary Matriz de objetos Byte
boolean Boolean
byte SByte
Fecha DateTime
dateTime DateTime
Decimal Decimal
double Double
ENTITY String
ENTIDADES String
FLOAT Single
gDay String
gMonth String
gMonthDay String
gYear String
gYearMonth String
hexBinary Matriz de objetos Byte
ID String
IDREF String
IDREFS String
int Int32
Entero String
language String
long Int64
Nombre String
NCName String
negativeInteger String
NMTOKEN String
NMTOKENS String
normalizedString String
nonNegativeInteger String
nonPositiveInteger String
NOTATION String
positiveInteger String
QName XmlQualifiedName
duration String
string String
short Int16
time DateTime
token String
unsignedByte Byte
unsignedInt UInt32
unsignedLong UInt64
unsignedShort UInt16

Se aplica a