Bagikan melalui


XmlReadSettings Constructors

Definition

Overloads

XmlReadSettings()

Initializes a new instance of the XmlReadSettings class.

XmlReadSettings(IDictionary<String,Object>, CompressionReadSettings, Object, Object, Object, Object)

Initializes a new instance of the XmlReadSettings class.

XmlReadSettings()

Initializes a new instance of the XmlReadSettings class.

public XmlReadSettings ();
Public Sub New ()

Applies to

XmlReadSettings(IDictionary<String,Object>, CompressionReadSettings, Object, Object, Object, Object)

Initializes a new instance of the XmlReadSettings class.

public XmlReadSettings (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, Microsoft.Azure.Management.DataFactory.Models.CompressionReadSettings compressionProperties = default, object validationMode = default, object detectDataType = default, object namespaces = default, object namespacePrefixes = default);
new Microsoft.Azure.Management.DataFactory.Models.XmlReadSettings : System.Collections.Generic.IDictionary<string, obj> * Microsoft.Azure.Management.DataFactory.Models.CompressionReadSettings * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.XmlReadSettings
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional compressionProperties As CompressionReadSettings = Nothing, Optional validationMode As Object = Nothing, Optional detectDataType As Object = Nothing, Optional namespaces As Object = Nothing, Optional namespacePrefixes As Object = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

compressionProperties
CompressionReadSettings

Compression settings.

validationMode
Object

Indicates what validation method is used when reading the xml files. Allowed values: 'none', 'xsd', or 'dtd'. Type: string (or Expression with resultType string).

detectDataType
Object

Indicates whether type detection is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).

namespaces
Object

Indicates whether namespace is enabled when reading the xml files. Type: boolean (or Expression with resultType boolean).

namespacePrefixes
Object

Namespace uri to prefix mappings to override the prefixes in column names when namespace is enabled, if no prefix is defined for a namespace uri, the prefix of xml element/attribute name in the xml data file will be used. Example: "{"http://www.example.com/xml":"prefix"}" Type: object (or Expression with resultType object).

Applies to