Package com.arcgismaps.httpcore

Types

Link copied to clipboard
class ArcGISHttpClient : Closeable

Execute HTTP network requests to ArcGIS resources with this object. The ArcGISHttpClient takes care of authentication with Network- and ArcGIS-secured resources. A singleton instance of ArcGISHttpClient can be obtained from ArcGISEnvironment.arcGISHttpClient.

Link copied to clipboard
data class FilePart(    val name: String,     val contentType: String?,     val filename: String,     val data: ByteArray)

A form data part of a network request of type HttpOperation.MultipartPost.

Link copied to clipboard
sealed class HttpOperation

Enumeration of HTTP request operations.

Link copied to clipboard
abstract class Request

An HTTP request.

Link copied to clipboard
data class RequestParameter(val name: String, val value: String)

Represents the name and the value of a network request parameter.

Link copied to clipboard
class Response : Closeable

An HTTP response.

Link copied to clipboard
class ResponseBody : Closeable

The response content of an HTTP response.

Link copied to clipboard
class ServiceException : Exception

An exception that occurred when connecting to a network service.