DataContractFormatAttribute Clase
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Indica a la infraestructura Windows Communication Foundation (WCF) que use el DataContractSerializer.
public ref class DataContractFormatAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)]
public sealed class DataContractFormatAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, Inherited=false)]
public sealed class DataContractFormatAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, AllowMultiple=false, Inherited=false)>]
type DataContractFormatAttribute = class
inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Interface | System.AttributeTargets.Method, Inherited=false)>]
type DataContractFormatAttribute = class
inherit Attribute
Public NotInheritable Class DataContractFormatAttribute
Inherits Attribute
- Herencia
- Atributos
Ejemplos
El ejemplo siguiente aplica DataContractFormatAttribute y define la propiedad Style en Rpc. El estilo RPC se describe en la especificación del Lenguaje de descripción de servicios Web (WSDL).
[ServiceContract, DataContractFormat(Style = OperationFormatStyle.Rpc)]
interface ICalculator
{
[OperationContract, DataContractFormat(Style = OperationFormatStyle.Rpc)]
double Add(double a, double b);
[OperationContract, DataContractFormat(Style = OperationFormatStyle.Document)]
double Subtract(double a, double b);
}
<ServiceContract(), DataContractFormat(Style := OperationFormatStyle.Rpc)> _
Interface ICalculator
<OperationContract(), DataContractFormat(Style := OperationFormatStyle.Rpc)> _
Function Add(ByVal a As Double, ByVal b As Double) As Double
<OperationContract(), DataContractFormat(Style := OperationFormatStyle.Document)> _
Function Subtract(ByVal a As Double, ByVal b As Double) As Double
End Interface
<ServiceContract(), DataContractFormat(Style := OperationFormatStyle.Rpc)> _
Interface ICalculator
<OperationContract(), DataContractFormat(Style := OperationFormatStyle.Rpc)> _
Function Add(ByVal a As Double, ByVal b As Double) As Double
<OperationContract(), DataContractFormat(Style := OperationFormatStyle.Document)> _
Function Subtract(ByVal a As Double, ByVal b As Double) As Double
End Interface
Comentarios
Este atributo es similar al atributo XmlSerializerFormatAttribute. Ambos atributos pueden aplicarse a un método o a una clase.
Un método puede tener cualquiera de los dos atributos aplicado, pero no ambos. Cualquier operación que no haya aplicado ninguno utilizará el atributo aplicado a la clase contenedora. Si la clase contenedora no cuenta con ningún atributo aplicado, se utilizará DataContractSerializer.
Aplicar el atributo hace que también DataContractSerializerOperationBehavior se cree en el tiempo de ejecución. El comportamiento permite la personalización en el tiempo de ejecución del comportamiento del serializador.
Constructores
DataContractFormatAttribute() |
Inicializa una nueva instancia de la clase DataContractFormatAttribute. |
Propiedades
Style |
Obtiene o establece el estilo SOAP de los datos serializados. |
TypeId |
Cuando se implementa en una clase derivada, obtiene un identificador único para este Attribute. (Heredado de Attribute) |
Métodos
Equals(Object) |
Devuelve un valor que indica si esta instancia es igual que un objeto especificado. (Heredado de Attribute) |
GetHashCode() |
Devuelve el código hash de esta instancia. (Heredado de Attribute) |
GetType() |
Obtiene el Type de la instancia actual. (Heredado de Object) |
IsDefaultAttribute() |
Si se reemplaza en una clase derivada, indica si el valor de esta instancia es el valor predeterminado de la clase derivada. (Heredado de Attribute) |
Match(Object) |
Cuando se invalida en una clase derivada, devuelve un valor que indica si esta instancia es igual a un objeto especificado. (Heredado de Attribute) |
MemberwiseClone() |
Crea una copia superficial del Object actual. (Heredado de Object) |
ToString() |
Devuelve una cadena que representa el objeto actual. (Heredado de Object) |
Implementaciones de interfaz explícitas
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
Asigna un conjunto de nombres a un conjunto correspondiente de identificadores de envío. (Heredado de Attribute) |
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) |
Obtiene la información de tipos de un objeto, que puede utilizarse para obtener la información de tipos de una interfaz. (Heredado de Attribute) |
_Attribute.GetTypeInfoCount(UInt32) |
Recupera el número de interfaces de información de tipo que proporciona un objeto (0 ó 1). (Heredado de Attribute) |
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
Proporciona acceso a las propiedades y los métodos expuestos por un objeto. (Heredado de Attribute) |