OrcWriteSettings Constructors
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.
Overloads
OrcWriteSettings() |
Initializes a new instance of the OrcWriteSettings class. |
OrcWriteSettings(IDictionary<String,Object>, Object, Object) |
Initializes a new instance of the OrcWriteSettings class. |
OrcWriteSettings()
Initializes a new instance of the OrcWriteSettings class.
public OrcWriteSettings ();
Public Sub New ()
Applies to
OrcWriteSettings(IDictionary<String,Object>, Object, Object)
Initializes a new instance of the OrcWriteSettings class.
public OrcWriteSettings (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object maxRowsPerFile = default, object fileNamePrefix = default);
new Microsoft.Azure.Management.DataFactory.Models.OrcWriteSettings : System.Collections.Generic.IDictionary<string, obj> * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.OrcWriteSettings
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional maxRowsPerFile As Object = Nothing, Optional fileNamePrefix As Object = Nothing)
Parameters
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- maxRowsPerFile
- Object
Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
- fileNamePrefix
- Object
Specifies the file name pattern <fileNamePrefix>_<fileIndex>.<fileExtension> when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
Applies to
Azure SDK for .NET