Skip to content

Commit

Permalink
.NET SDK Resource Provider:'DataFactory'
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#6064'
REST Spec PR Author 'Yiliu-microsoft'
REST Spec PR Last commit
  • Loading branch information
adxsdknet committed May 29, 2019
1 parent c85b5c9 commit cde3db1
Showing 1 changed file with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,10 @@ public DelimitedTextReadSetting()
/// <param name="skipLineCount">Indicates the number of non-empty rows
/// to skip when reading data from input files. Type: integer (or
/// Expression with resultType integer).</param>
/// <param name="treatEmptyAsNull">Specify whether to treat null or
/// empty string as a null value when reading data from an input
/// file.</param>
public DelimitedTextReadSetting(string type, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), object skipLineCount = default(object), bool? treatEmptyAsNull = default(bool?))
public DelimitedTextReadSetting(string type, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), object skipLineCount = default(object))
: base(type, additionalProperties)
{
SkipLineCount = skipLineCount;
TreatEmptyAsNull = treatEmptyAsNull;
CustomInit();
}

Expand All @@ -61,13 +57,6 @@ public DelimitedTextReadSetting()
[JsonProperty(PropertyName = "skipLineCount")]
public object SkipLineCount { get; set; }

/// <summary>
/// Gets or sets specify whether to treat null or empty string as a
/// null value when reading data from an input file.
/// </summary>
[JsonProperty(PropertyName = "treatEmptyAsNull")]
public bool? TreatEmptyAsNull { get; set; }

/// <summary>
/// Validate the object.
/// </summary>
Expand Down

0 comments on commit cde3db1

Please sign in to comment.