DataContractFormatAttribute Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Indica all'infrastruttura WCF (Windows Communication Foundation) di usare 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
- Ereditarietà
- Attributi
Esempio
Nell'esempio seguente viene applicato l'attributo DataContractFormatAttribute e la proprietà Style viene impostata su Rpc. Lo stile RPC viene descritto nella specifica del linguaggio WSDL (Web Service Description Language).
[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
Commenti
Questo attributo è simile all'attributo XmlSerializerFormatAttribute. Entrambi gli attributi possono essere applicati a un metodo oppure a una classe.
Entrambi gli attributi possono essere applicati a uno stesso metodo, ma non contemporaneamente. Se a una determinata operazione non viene applicato alcuno dei due attributi, viene utilizzato l'attributo applicato alla classe che contiene l'operazione. Se a tale classe non è stato applicato alcuno dei due attributi, viene utilizzato l'attributo DataContractSerializer.
L'applicazione dell'attributo comporta inoltre la creazione in fase di esecuzione di un comportamento DataContractSerializerOperationBehavior che consente la personalizzazione in fase di esecuzione del comportamento del serializzatore.
Costruttori
DataContractFormatAttribute() |
Inizializza una nuova istanza della classe DataContractFormatAttribute. |
Proprietà
Style |
Ottiene o imposta lo stile SOAP dei dati serializzati. |
TypeId |
Quando è implementata in una classe derivata, ottiene un identificatore univoco della classe Attribute. (Ereditato da Attribute) |
Metodi
Equals(Object) |
Restituisce un valore che indica se questa istanza è uguale a un oggetto specificato. (Ereditato da Attribute) |
GetHashCode() |
Restituisce il codice hash per l'istanza. (Ereditato da Attribute) |
GetType() |
Ottiene l'oggetto Type dell'istanza corrente. (Ereditato da Object) |
IsDefaultAttribute() |
In caso di override in una classe derivata, indica se il valore di questa istanza è il valore predefinito per la classe derivata. (Ereditato da Attribute) |
Match(Object) |
Quando è sottoposto a override in una classe derivata, restituisce un valore che indica se questa istanza equivale a un oggetto specificato. (Ereditato da Attribute) |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente. (Ereditato da Object) |
ToString() |
Restituisce una stringa che rappresenta l'oggetto corrente. (Ereditato da Object) |
Implementazioni dell'interfaccia esplicita
_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
Esegue il mapping di un set di nomi a un set corrispondente di ID dispatch. (Ereditato da Attribute) |
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr) |
Recupera le informazioni sul tipo relative a un oggetto, che possono essere usate per ottenere informazioni sul tipo relative a un'interfaccia. (Ereditato da Attribute) |
_Attribute.GetTypeInfoCount(UInt32) |
Recupera il numero delle interfacce di informazioni sul tipo fornite da un oggetto (0 o 1). (Ereditato da Attribute) |
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
Fornisce l'accesso a proprietà e metodi esposti da un oggetto. (Ereditato da Attribute) |