Enum SerializerMode
Defines the type of serializer that will be used for XML serialization and deserialization.
Namespace: Nevatech.Vsb.Repository.Description
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum SerializerMode
Fields
Name | Description |
---|---|
Auto | Select the serializer automatically. Data Contract serializer will be tried first, if it fails, XML serializer will be used. |
DataContractSerializer | Use Data Contract serializer. |
SoapSerializer | Use SOAP serializer. It is effectively the same as XML serializer for WCF services. |
XmlSerializer | Use standard XML serializer. |