XmlDataContractSerializerInputFormatter Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This class handles deserialization of input XML data to strongly-typed objects using DataContractSerializer.
public ref class XmlDataContractSerializerInputFormatter : Microsoft::AspNetCore::Mvc::Formatters::TextInputFormatter
public ref class XmlDataContractSerializerInputFormatter : Microsoft::AspNetCore::Mvc::Formatters::TextInputFormatter, Microsoft::AspNetCore::Mvc::Formatters::IInputFormatterExceptionPolicy
public class XmlDataContractSerializerInputFormatter : Microsoft.AspNetCore.Mvc.Formatters.TextInputFormatter
public class XmlDataContractSerializerInputFormatter : Microsoft.AspNetCore.Mvc.Formatters.TextInputFormatter, Microsoft.AspNetCore.Mvc.Formatters.IInputFormatterExceptionPolicy
type XmlDataContractSerializerInputFormatter = class
inherit TextInputFormatter
type XmlDataContractSerializerInputFormatter = class
inherit TextInputFormatter
interface IInputFormatterExceptionPolicy
Public Class XmlDataContractSerializerInputFormatter
Inherits TextInputFormatter
Public Class XmlDataContractSerializerInputFormatter
Inherits TextInputFormatter
Implements IInputFormatterExceptionPolicy
- Inheritance
- Implements
Constructors
XmlDataContractSerializerInputFormatter() |
Obsolete.
Initializes a new instance of XmlDataContractSerializerInputFormatter. |
XmlDataContractSerializerInputFormatter(Boolean) |
Obsolete.
Initializes a new instance of XmlDataContractSerializerInputFormatter. |
XmlDataContractSerializerInputFormatter(MvcOptions) |
Initializes a new instance of XmlDataContractSerializerInputFormatter. |
Properties
ExceptionPolicy |
Gets the flag to indicate if the body model binder should handle all exceptions. If an exception is handled, the body model binder converts the exception into model state errors, else the exception is allowed to propagate. |
MaxDepth |
Indicates the acceptable input XML depth. |
SerializerSettings |
Gets or sets the DataContractSerializerSettings used to configure the DataContractSerializer. |
SupportedEncodings |
Gets the mutable collection of character encodings supported by this TextInputFormatter. The encodings are used when reading the data. (Inherited from TextInputFormatter) |
SupportedMediaTypes |
Gets the mutable collection of media type elements supported by this InputFormatter. (Inherited from InputFormatter) |
WrapperProviderFactories |
Gets the list of IWrapperProviderFactory to provide the wrapping type for de-serialization. |
XmlDictionaryReaderQuotas |
The quotas include - DefaultMaxDepth, DefaultMaxStringContentLength, DefaultMaxArrayLength, DefaultMaxBytesPerRead, DefaultMaxNameTableCharCount |
Methods
CanRead(InputFormatterContext) |
Determines whether this IInputFormatter can deserialize an object of the
|
CanReadType(Type) |
Determines whether this InputFormatter can deserialize an object of the given
|
CreateSerializer(Type) |
Called during deserialization to get the DataContractSerializer. |
CreateXmlReader(Stream, Encoding) |
Called during deserialization to get the XmlReader. |
GetCachedSerializer(Type) |
Gets the cached serializer or creates and caches the serializer for the given type. |
GetDefaultValueForType(Type) |
Gets the default value for a given type. Used to return a default value when the body contains no content. (Inherited from InputFormatter) |
GetSerializableType(Type) |
Gets the type to which the XML will be deserialized. |
GetSupportedContentTypes(String, Type) |
Gets a filtered list of content types which are supported by the IInputFormatter
for the |
ReadAsync(InputFormatterContext) |
Reads an object from the request body. (Inherited from InputFormatter) |
ReadRequestBodyAsync(InputFormatterContext, Encoding) |
Reads an object from the request body. |
ReadRequestBodyAsync(InputFormatterContext) |
Reads an object from the request body. (Inherited from TextInputFormatter) |
SelectCharacterEncoding(InputFormatterContext) |
Returns an Encoding based on |