Class NetworkOptions
Network options related to Tableau connections.
Namespace: Tableau.Migration.Config
Assembly: Tableau.Migration.dll
Syntax
public class NetworkOptions
Properties
BinaryContentLoggingEnabled
Indicates whether the SDK logs request/response binary (not textual) content. The default value is disabled.
Declaration
public bool BinaryContentLoggingEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
ContentLoggingEnabled
Indicates whether the SDK logs request/response content. The default value is disabled.
Declaration
public bool ContentLoggingEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
ExceptionsLoggingEnabled
Indicates whether the SDK logs network exceptions. The default value is disabled.
Declaration
public bool ExceptionsLoggingEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
FileChunkSizeKB
Maximum file chunk size in Kilobytes.
Declaration
public int FileChunkSizeKB { get; set; }
Property Value
Type | Description |
---|---|
int |
HeadersLoggingEnabled
Indicates whether the SDK logs request/response headers. The default value is disabled.
Declaration
public bool HeadersLoggingEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |
Resilience
Resilience options related to Tableau connections. This configuration adds a transient-fault-handling layer for all communication to Tableau.
Declaration
public ResilienceOptions Resilience { get; set; }
Property Value
Type | Description |
---|---|
ResilienceOptions |
UserAgentComment
Gets or sets the comment to include in the HTTP user agent header, or null to omit the user agent comment.
Declaration
public string? UserAgentComment { get; set; }
Property Value
Type | Description |
---|---|
string |