Show / Hide Table of Contents

Class HttpDataset

A file in an HTTP web server.

Inheritance
System.Object
Dataset
HttpDataset
Inherited Members
Dataset.AdditionalProperties
Dataset.Annotations
Dataset.Description
Dataset.Folder
Dataset.LinkedServiceName
Dataset.Parameters
Dataset.Schema
Dataset.Structure
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.HttpDataset/HttpDatasetConverter))]
public class HttpDataset : Azure.Analytics.Synapse.Artifacts.Models.Dataset

Constructors

HttpDataset(LinkedServiceReference)

Initializes a new instance of HttpDataset.

Declaration
public HttpDataset (Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference linkedServiceName);
Parameters
LinkedServiceReference linkedServiceName

Linked service reference.

Exceptions
System.ArgumentNullException

linkedServiceName is null.

Properties

AdditionalHeaders

The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).

Declaration
public object AdditionalHeaders { get; set; }
Property Value
System.Object

Compression

The data compression method used on files.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.DatasetCompression Compression { get; set; }
Property Value
DatasetCompression

Format

The format of files. Please note DatasetStorageFormat is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AvroFormat, JsonFormat, OrcFormat, ParquetFormat and TextFormat.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.DatasetStorageFormat Format { get; set; }
Property Value
DatasetStorageFormat

RelativeUrl

The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).

Declaration
public object RelativeUrl { get; set; }
Property Value
System.Object

RequestBody

The body for the HTTP request. Type: string (or Expression with resultType string).

Declaration
public object RequestBody { get; set; }
Property Value
System.Object

RequestMethod

The HTTP method for the HTTP request. Type: string (or Expression with resultType string).

Declaration
public object RequestMethod { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET