HttpReadSettings 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
HttpReadSettings() |
Initializes a new instance of the HttpReadSettings class. |
HttpReadSettings(IDictionary<String,Object>, Object, Object, Object, Object, Object, Object, Nullable<Boolean>, Object) |
Initializes a new instance of the HttpReadSettings class. |
HttpReadSettings()
Initializes a new instance of the HttpReadSettings class.
public HttpReadSettings ();
Public Sub New ()
Applies to
HttpReadSettings(IDictionary<String,Object>, Object, Object, Object, Object, Object, Object, Nullable<Boolean>, Object)
Initializes a new instance of the HttpReadSettings class.
public HttpReadSettings (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object maxConcurrentConnections = default, object disableMetricsCollection = default, object requestMethod = default, object requestBody = default, object additionalHeaders = default, object requestTimeout = default, bool? enablePartitionDiscovery = default, object partitionRootPath = default);
new Microsoft.Azure.Management.DataFactory.Models.HttpReadSettings : System.Collections.Generic.IDictionary<string, obj> * obj * obj * obj * obj * obj * obj * Nullable<bool> * obj -> Microsoft.Azure.Management.DataFactory.Models.HttpReadSettings
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional maxConcurrentConnections As Object = Nothing, Optional disableMetricsCollection As Object = Nothing, Optional requestMethod As Object = Nothing, Optional requestBody As Object = Nothing, Optional additionalHeaders As Object = Nothing, Optional requestTimeout As Object = Nothing, Optional enablePartitionDiscovery As Nullable(Of Boolean) = Nothing, Optional partitionRootPath As Object = Nothing)
Parameters
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- maxConcurrentConnections
- Object
The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
- disableMetricsCollection
- Object
If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
- requestMethod
- Object
The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- requestBody
- Object
The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- additionalHeaders
- Object
The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string).
- requestTimeout
- Object
Specifies the timeout for a HTTP client to get HTTP response from HTTP server.
- partitionRootPath
- Object
Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
Applies to
Azure SDK for .NET