Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Overview

Properties

The Tsplice Client properties include the following:

Expand
titleHttpClient
Code Block
public System.Net.Http.HttpClient HttpClient { get; set; }

Gets or sets the HTTP client object used for communications with the host system. By default this is initialized to a shared HttpClient instance, but can be set to an alternate instance of an HttpClient object if necessary (e.g. for automated tests).

Expand
titleBaseUri
Code Block
public System.Uri BaseUri { get; set; }

Gets or setsthe uniform resource identifier of the Tsplice host e.g. https://host.name.com/Path.

Expand
titleJsonOptions
Code Block
public System.Test.Json.JsonSerializerOptions JsonOptions { get; set; }

Gets or sets the Json serialization options used by the Tsplice client.

Expand
titleDownloadFolder
Code Block
public System.String DownloadFolder { get; set; }

Gets or sets the root download folder used by functions that retrieve files from the host i.e. when a local path is not specified in the function call. If a download folder is not explicitly set then a temporary folder will be created during the first function call that requires one, and this folder will be deleted when the application exits.

Methods

The Tsplice Client methods are grouped below by function.

...