Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HttpClientOptions

Options describing how an HttpClient will make connections.

Hierarchy

Index

Constructors

Methods

Constructors

constructor

Methods

addCrlPath

addCrlValue

addEnabledCipherSuite

addEnabledSecureTransportProtocol

  • addEnabledSecureTransportProtocol(enabledSecureTransportProtocols: string): HttpClientOptions

addNonProxyHost

  • Set a list of remote hosts that are not proxied when the client is configured to use a proxy. This list serves the same purpose than the JVM nonProxyHosts configuration.

    Entries can use the * wildcard character for pattern matching, e.g *.example.com matches www.example.com.

    Parameters

    • nonProxyHosts: string

    Returns HttpClientOptions

getActivityLogDataFormat

  • getActivityLogDataFormat(): any
  • Set the value of Netty's logging handler's data format: Netty's pipeline is configured for logging on Netty's logger.

    Returns any

getAlpnVersions

  • Set the list of protocol versions to provide to the server during the Application-Layer Protocol Negotiation. When the list is empty, the client provides a best effort list according to HttpClientOptions:

    Returns HttpVersion[]

getConnectTimeout

  • getConnectTimeout(): number

getCrlPaths

  • getCrlPaths(): string[]
  • Add a CRL path

    Returns string[]

getCrlValues

getDecoderInitialBufferSize

  • getDecoderInitialBufferSize(): number
  • set to initialBufferSizeHttpDecoder the initial buffer of the HttpDecoder.

    Returns number

getDefaultHost

  • getDefaultHost(): string
  • Set the default host name to be used by this client in requests if none is provided when making the request.

    Returns string

getDefaultPort

  • getDefaultPort(): number
  • Set the default port to be used by this client in requests if none is provided when making the request.

    Returns number

getEnabledCipherSuites

  • getEnabledCipherSuites(): string[]
  • Add an enabled cipher suite, appended to the ordered suites.

    Returns string[]

getEnabledSecureTransportProtocols

  • getEnabledSecureTransportProtocols(): string[]

getHttp2ConnectionWindowSize

  • getHttp2ConnectionWindowSize(): number
  • Set the default HTTP/2 connection window size. It overrides the initial window size set by Http2Settings, so the connection window size is greater than for its streams, in order the data throughput.

    A value of -1 reuses the initial window size setting.

    Returns number

getHttp2KeepAliveTimeout

  • getHttp2KeepAliveTimeout(): number
  • Set the keep alive timeout for HTTP/2 connections, in seconds.

    This value determines how long a connection remains unused in the pool before being evicted and closed.

    A timeout of 0 means there is no timeout.

    Returns number

getHttp2MaxPoolSize

  • getHttp2MaxPoolSize(): number
  • Set the maximum pool size for HTTP/2 connections

    Returns number

getHttp2MultiplexingLimit

  • getHttp2MultiplexingLimit(): number
  • Set a client limit of the number concurrent streams for each HTTP/2 connection, this limits the number of streams the client can create for a connection. The effective number of streams for a connection is the min of this value and the server's initial settings.

    Setting the value to -1 means to use the value sent by the server's initial settings. -1 is the default value.

    Returns number

getIdleTimeout

  • getIdleTimeout(): number
  • Set the idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is received nor sent within the timeout.

    If you want change default time unit, use HttpClientOptions

    Returns number

getIdleTimeoutUnit

  • getIdleTimeoutUnit(): any
  • Set the idle timeout unit. If not specified, default is seconds.

    Returns any

getInitialSettings

  • Set the HTTP/2 connection settings immediately sent by to the server when the client connects.

    Returns Http2Settings

getJdkSslEngineOptions

getKeepAliveTimeout

  • getKeepAliveTimeout(): number
  • Set the keep alive timeout for HTTP/1.x, in seconds.

    This value determines how long a connection remains unused in the pool before being evicted and closed.

    A timeout of 0 means there is no timeout.

    Returns number

getKeyStoreOptions

getLocalAddress

  • getLocalAddress(): string
  • Set the local interface to bind for network connections. When the local address is null, it will pick any local address, the default local address is null.

    Returns string

getLogActivity

  • getLogActivity(): boolean
  • Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Returns boolean

getMaxChunkSize

  • getMaxChunkSize(): number
  • Set the maximum HTTP chunk size

    Returns number

getMaxHeaderSize

  • getMaxHeaderSize(): number
  • Set the maximum length of all headers for HTTP/1.x .

    Returns number

getMaxInitialLineLength

  • getMaxInitialLineLength(): number
  • Set the maximum length of the initial line for HTTP/1.x (e.g. "HTTP/1.1 200 OK")

    Returns number

getMaxPoolSize

  • getMaxPoolSize(): number
  • Set the maximum pool size for connections

    Returns number

getMaxRedirects

  • getMaxRedirects(): number
  • Set to maxRedirects the maximum number of redirection a request can follow.

    Returns number

getMaxWaitQueueSize

  • getMaxWaitQueueSize(): number
  • Set the maximum requests allowed in the wait queue, any requests beyond the max size will result in a ConnectionPoolTooBusyException. If the value is set to a negative number then the queue will be unbounded.

    Returns number

getMaxWebSocketFrameSize

  • getMaxWebSocketFrameSize(): number
  • Set the max WebSocket frame size

    Returns number

getMaxWebSocketMessageSize

  • getMaxWebSocketMessageSize(): number
  • Set the max WebSocket message size

    Returns number

getMaxWebSockets

  • getMaxWebSockets(): number
  • Set the max number of WebSockets per endpoint.

    Returns number

getMetricsName

  • getMetricsName(): string
  • Set the metrics name identifying the reported metrics, useful for grouping metrics with the same name.

    Returns string

getName

  • getName(): string
  • Set the client name, used when the client is shared, otherwise ignored.

    Returns string

getNonProxyHosts

  • getNonProxyHosts(): string[]
  • Set a list of remote hosts that are not proxied when the client is configured to use a proxy. This list serves the same purpose than the JVM nonProxyHosts configuration.

    Entries can use the * wildcard character for pattern matching, e.g *.example.com matches www.example.com.

    Returns string[]

getOpenSslEngineOptions

getPemKeyCertOptions

getPemTrustOptions

getPfxKeyCertOptions

getPfxTrustOptions

getPipeliningLimit

  • getPipeliningLimit(): number
  • Set the limit of pending requests a pipe-lined HTTP/1 connection can send.

    Returns number

getPoolCleanerPeriod

  • getPoolCleanerPeriod(): number
  • Set the connection pool cleaner period in milli seconds, a non positive value disables expiration checks and connections will remain in the pool until they are closed.

    Returns number

getPoolEventLoopSize

  • getPoolEventLoopSize(): number
  • Set the number of event-loop the pool use.

    • when the size is 0, the client pool will use the current event-loop
    • otherwise the client will create and use its own event loop

    The default size is 0.

    Returns number

getProtocolVersion

  • Set the protocol version.

    Returns HttpVersion

getProxyOptions

getReadIdleTimeout

  • getReadIdleTimeout(): number
  • Set the read idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is received within the timeout.

    If you want change default time unit, use HttpClientOptions

    Returns number

getReceiveBufferSize

  • getReceiveBufferSize(): number

getSendBufferSize

  • getSendBufferSize(): number

getSoLinger

  • getSoLinger(): number
  • Set whether SO_linger keep alive is enabled

    Returns number

getSslEngineOptions

getSslHandshakeTimeout

  • getSslHandshakeTimeout(): number
  • Set the SSL handshake timeout, default time unit is seconds.

    Returns number

getSslHandshakeTimeoutUnit

  • getSslHandshakeTimeoutUnit(): any

getTcpUserTimeout

  • getTcpUserTimeout(): number
  • Sets the TCP_USER_TIMEOUT option - only with linux native transport.

    Returns number

getTracingPolicy

  • Set the tracing policy for the client behavior when Vert.x has tracing enabled.

    Returns TracingPolicy

getTrafficClass

  • getTrafficClass(): number
  • Set the value of traffic class

    Returns number

getTrustOptions

getTrustStoreOptions

getTryUsePerMessageWebSocketCompression

  • getTryUsePerMessageWebSocketCompression(): boolean
  • Set whether the client will offer the WebSocket per-message deflate compression extension.

    Returns boolean

getTryWebSocketDeflateFrameCompression

  • getTryWebSocketDeflateFrameCompression(): boolean
  • Returns boolean

getWebSocketClosingTimeout

  • getWebSocketClosingTimeout(): number
  • Set the amount of time a client WebSocket will wait until it closes the TCP connection after receiving a close frame.

    When a WebSocket is closed, the server should close the TCP connection. This timeout will close the TCP connection on the client when it expires.

    Set to 0L closes the TCP connection immediately after receiving the close frame.

    Set to a negative value to disable it.

    Returns number

getWebSocketCompressionAllowClientNoContext

  • getWebSocketCompressionAllowClientNoContext(): boolean
  • Set whether the client_no_context_takeover parameter of the WebSocket per-message deflate compression extension will be offered.

    Returns boolean

getWebSocketCompressionLevel

  • getWebSocketCompressionLevel(): number
  • Set the WebSocket deflate compression level.

    Returns number

getWebSocketCompressionRequestServerNoContext

  • getWebSocketCompressionRequestServerNoContext(): boolean
  • Set whether the server_no_context_takeover parameter of the WebSocket per-message deflate compression extension will be offered.

    Returns boolean

getWriteIdleTimeout

  • getWriteIdleTimeout(): number
  • Set the write idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is sent within the timeout.

    If you want change default time unit, use HttpClientOptions

    Returns number

isForceSni

  • isForceSni(): boolean
  • By default, the server name is only sent for Fully Qualified Domain Name (FQDN), setting this property to true forces the server name to be always sent.

    Returns boolean

isHttp2ClearTextUpgrade

  • isHttp2ClearTextUpgrade(): boolean
  • Set to true when an h2c connection is established using an HTTP/1.1 upgrade request, and false when an h2c connection is established directly (with prior knowledge).

    Returns boolean

isHttp2ClearTextUpgradeWithPreflightRequest

  • isHttp2ClearTextUpgradeWithPreflightRequest(): boolean
  • Set to true when an h2c connection established using an HTTP/1.1 upgrade request should perform a preflight OPTIONS request to the origin server to establish the h2c connection.

    Returns boolean

isKeepAlive

  • isKeepAlive(): boolean
  • Set whether keep alive is enabled on the client

    Returns boolean

isPipelining

  • isPipelining(): boolean
  • Set whether pipe-lining is enabled on the client

    Returns boolean

isReuseAddress

  • isReuseAddress(): boolean
  • Set the value of reuse address

    Returns boolean

isReusePort

  • isReusePort(): boolean
  • Set the value of reuse port.

    This is only supported by native transports.

    Returns boolean

isSendUnmaskedFrames

  • isSendUnmaskedFrames(): boolean
  • Set true when the client wants to skip frame masking.

    You may want to set it true on server by server WebSocket communication: in this case you are by passing RFC6455 protocol.

    It's false as default.

    Returns boolean

isShared

  • isShared(): boolean
  • Set to true to share the client.

    There can be multiple shared clients distinguished by HttpClientOptions, when no specific name is set, the HttpClientOptions is used.

    Returns boolean

isSsl

  • isSsl(): boolean
  • Set whether SSL/TLS is enabled

    Returns boolean

isTcpCork

  • isTcpCork(): boolean
  • Enable the TCP_CORK option - only with linux native transport.

    Returns boolean

isTcpFastOpen

  • isTcpFastOpen(): boolean
  • Enable the TCP_FASTOPEN option - only with linux native transport.

    Returns boolean

isTcpKeepAlive

  • isTcpKeepAlive(): boolean
  • Set whether TCP keep alive is enabled

    Returns boolean

isTcpNoDelay

  • isTcpNoDelay(): boolean
  • Set whether TCP no delay is enabled

    Returns boolean

isTcpQuickAck

  • isTcpQuickAck(): boolean
  • Enable the TCP_QUICKACK option - only with linux native transport.

    Returns boolean

isTrustAll

  • isTrustAll(): boolean
  • Set whether all server certificates should be trusted

    Returns boolean

isTryUseCompression

  • isTryUseCompression(): boolean
  • Set whether compression is enabled

    Returns boolean

isUseAlpn

  • isUseAlpn(): boolean
  • Set the ALPN usage.

    Returns boolean

isVerifyHost

  • isVerifyHost(): boolean
  • Set whether hostname verification is enabled

    Returns boolean

setActivityLogDataFormat

  • Set the value of Netty's logging handler's data format: Netty's pipeline is configured for logging on Netty's logger.

    Parameters

    • activityLogDataFormat: any

    Returns HttpClientOptions

setAlpnVersions

  • Set the list of protocol versions to provide to the server during the Application-Layer Protocol Negotiation. When the list is empty, the client provides a best effort list according to HttpClientOptions:

    Parameters

    Returns HttpClientOptions

setConnectTimeout

setDecoderInitialBufferSize

  • set to initialBufferSizeHttpDecoder the initial buffer of the HttpDecoder.

    Parameters

    • decoderInitialBufferSize: number

    Returns HttpClientOptions

setDefaultHost

  • Set the default host name to be used by this client in requests if none is provided when making the request.

    Parameters

    • defaultHost: string

    Returns HttpClientOptions

setDefaultPort

  • Set the default port to be used by this client in requests if none is provided when making the request.

    Parameters

    • defaultPort: number

    Returns HttpClientOptions

setEnabledSecureTransportProtocols

  • setEnabledSecureTransportProtocols(enabledSecureTransportProtocols: string[]): HttpClientOptions

setForceSni

  • By default, the server name is only sent for Fully Qualified Domain Name (FQDN), setting this property to true forces the server name to be always sent.

    Parameters

    • forceSni: boolean

    Returns HttpClientOptions

setHttp2ClearTextUpgrade

  • Set to true when an h2c connection is established using an HTTP/1.1 upgrade request, and false when an h2c connection is established directly (with prior knowledge).

    Parameters

    • http2ClearTextUpgrade: boolean

    Returns HttpClientOptions

setHttp2ClearTextUpgradeWithPreflightRequest

  • setHttp2ClearTextUpgradeWithPreflightRequest(http2ClearTextUpgradeWithPreflightRequest: boolean): HttpClientOptions
  • Set to true when an h2c connection established using an HTTP/1.1 upgrade request should perform a preflight OPTIONS request to the origin server to establish the h2c connection.

    Parameters

    • http2ClearTextUpgradeWithPreflightRequest: boolean

    Returns HttpClientOptions

setHttp2ConnectionWindowSize

  • Set the default HTTP/2 connection window size. It overrides the initial window size set by Http2Settings, so the connection window size is greater than for its streams, in order the data throughput.

    A value of -1 reuses the initial window size setting.

    Parameters

    • http2ConnectionWindowSize: number

    Returns HttpClientOptions

setHttp2KeepAliveTimeout

  • Set the keep alive timeout for HTTP/2 connections, in seconds.

    This value determines how long a connection remains unused in the pool before being evicted and closed.

    A timeout of 0 means there is no timeout.

    Parameters

    • http2KeepAliveTimeout: number

    Returns HttpClientOptions

setHttp2MaxPoolSize

  • Set the maximum pool size for HTTP/2 connections

    Parameters

    • http2MaxPoolSize: number

    Returns HttpClientOptions

setHttp2MultiplexingLimit

  • Set a client limit of the number concurrent streams for each HTTP/2 connection, this limits the number of streams the client can create for a connection. The effective number of streams for a connection is the min of this value and the server's initial settings.

    Setting the value to -1 means to use the value sent by the server's initial settings. -1 is the default value.

    Parameters

    • http2MultiplexingLimit: number

    Returns HttpClientOptions

setIdleTimeout

  • Set the idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is received nor sent within the timeout.

    If you want change default time unit, use HttpClientOptions

    Parameters

    • idleTimeout: number

    Returns HttpClientOptions

setIdleTimeoutUnit

setInitialSettings

  • Set the HTTP/2 connection settings immediately sent by to the server when the client connects.

    Parameters

    Returns HttpClientOptions

setJdkSslEngineOptions

setKeepAlive

  • Set whether keep alive is enabled on the client

    Parameters

    • keepAlive: boolean

    Returns HttpClientOptions

setKeepAliveTimeout

  • Set the keep alive timeout for HTTP/1.x, in seconds.

    This value determines how long a connection remains unused in the pool before being evicted and closed.

    A timeout of 0 means there is no timeout.

    Parameters

    • keepAliveTimeout: number

    Returns HttpClientOptions

setKeyCertOptions

setKeyStoreOptions

setLocalAddress

  • Set the local interface to bind for network connections. When the local address is null, it will pick any local address, the default local address is null.

    Parameters

    • localAddress: string

    Returns HttpClientOptions

setLogActivity

  • Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Parameters

    • logActivity: boolean

    Returns HttpClientOptions

setMaxChunkSize

  • Set the maximum HTTP chunk size

    Parameters

    • maxChunkSize: number

    Returns HttpClientOptions

setMaxHeaderSize

  • Set the maximum length of all headers for HTTP/1.x .

    Parameters

    • maxHeaderSize: number

    Returns HttpClientOptions

setMaxInitialLineLength

  • Set the maximum length of the initial line for HTTP/1.x (e.g. "HTTP/1.1 200 OK")

    Parameters

    • maxInitialLineLength: number

    Returns HttpClientOptions

setMaxPoolSize

  • Set the maximum pool size for connections

    Parameters

    • maxPoolSize: number

    Returns HttpClientOptions

setMaxRedirects

  • Set to maxRedirects the maximum number of redirection a request can follow.

    Parameters

    • maxRedirects: number

    Returns HttpClientOptions

setMaxWaitQueueSize

  • Set the maximum requests allowed in the wait queue, any requests beyond the max size will result in a ConnectionPoolTooBusyException. If the value is set to a negative number then the queue will be unbounded.

    Parameters

    • maxWaitQueueSize: number

    Returns HttpClientOptions

setMaxWebSocketFrameSize

  • Set the max WebSocket frame size

    Parameters

    • maxWebSocketFrameSize: number

    Returns HttpClientOptions

setMaxWebSocketMessageSize

  • Set the max WebSocket message size

    Parameters

    • maxWebSocketMessageSize: number

    Returns HttpClientOptions

setMaxWebSockets

  • Set the max number of WebSockets per endpoint.

    Parameters

    • maxWebSockets: number

    Returns HttpClientOptions

setMetricsName

  • Set the metrics name identifying the reported metrics, useful for grouping metrics with the same name.

    Parameters

    • metricsName: string

    Returns HttpClientOptions

setName

  • Set the client name, used when the client is shared, otherwise ignored.

    Parameters

    • name: string

    Returns HttpClientOptions

setNonProxyHosts

  • Set a list of remote hosts that are not proxied when the client is configured to use a proxy. This list serves the same purpose than the JVM nonProxyHosts configuration.

    Entries can use the * wildcard character for pattern matching, e.g *.example.com matches www.example.com.

    Parameters

    • nonProxyHosts: string[]

    Returns HttpClientOptions

setOpenSslEngineOptions

setPemKeyCertOptions

setPemTrustOptions

setPfxKeyCertOptions

setPfxTrustOptions

setPipelining

  • Set whether pipe-lining is enabled on the client

    Parameters

    • pipelining: boolean

    Returns HttpClientOptions

setPipeliningLimit

  • Set the limit of pending requests a pipe-lined HTTP/1 connection can send.

    Parameters

    • pipeliningLimit: number

    Returns HttpClientOptions

setPoolCleanerPeriod

  • Set the connection pool cleaner period in milli seconds, a non positive value disables expiration checks and connections will remain in the pool until they are closed.

    Parameters

    • poolCleanerPeriod: number

    Returns HttpClientOptions

setPoolEventLoopSize

  • Set the number of event-loop the pool use.

    • when the size is 0, the client pool will use the current event-loop
    • otherwise the client will create and use its own event loop

    The default size is 0.

    Parameters

    • poolEventLoopSize: number

    Returns HttpClientOptions

setProtocolVersion

  • Set the protocol version.

    Parameters

    Returns HttpClientOptions

setProxyOptions

setReadIdleTimeout

  • Set the read idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is received within the timeout.

    If you want change default time unit, use HttpClientOptions

    Parameters

    • readIdleTimeout: number

    Returns HttpClientOptions

setReceiveBufferSize

setReuseAddress

setReusePort

  • Set the value of reuse port.

    This is only supported by native transports.

    Parameters

    • reusePort: boolean

    Returns HttpClientOptions

setSendBufferSize

setSendUnmaskedFrames

  • Set true when the client wants to skip frame masking.

    You may want to set it true on server by server WebSocket communication: in this case you are by passing RFC6455 protocol.

    It's false as default.

    Parameters

    • sendUnmaskedFrames: boolean

    Returns HttpClientOptions

setShared

  • Set to true to share the client.

    There can be multiple shared clients distinguished by HttpClientOptions, when no specific name is set, the HttpClientOptions is used.

    Parameters

    • shared: boolean

    Returns HttpClientOptions

setSoLinger

setSsl

setSslEngineOptions

setSslHandshakeTimeout

setSslHandshakeTimeoutUnit

setTcpCork

  • Enable the TCP_CORK option - only with linux native transport.

    Parameters

    • tcpCork: boolean

    Returns HttpClientOptions

setTcpFastOpen

setTcpKeepAlive

setTcpNoDelay

setTcpQuickAck

setTcpUserTimeout

setTracingPolicy

  • Set the tracing policy for the client behavior when Vert.x has tracing enabled.

    Parameters

    Returns HttpClientOptions

setTrafficClass

setTrustAll

setTrustOptions

setTrustStoreOptions

setTryUseCompression

  • Set whether compression is enabled

    Parameters

    • tryUseCompression: boolean

    Returns HttpClientOptions

setTryUsePerFrameWebSocketCompression

  • setTryUsePerFrameWebSocketCompression(tryUsePerFrameWebSocketCompression: boolean): HttpClientOptions
  • Set whether the client will offer the WebSocket per-frame deflate compression extension.

    Parameters

    • tryUsePerFrameWebSocketCompression: boolean

    Returns HttpClientOptions

setTryUsePerMessageWebSocketCompression

  • setTryUsePerMessageWebSocketCompression(tryUsePerMessageWebSocketCompression: boolean): HttpClientOptions
  • Set whether the client will offer the WebSocket per-message deflate compression extension.

    Parameters

    • tryUsePerMessageWebSocketCompression: boolean

    Returns HttpClientOptions

setUseAlpn

setVerifyHost

  • Set whether hostname verification is enabled

    Parameters

    • verifyHost: boolean

    Returns HttpClientOptions

setWebSocketClosingTimeout

  • Set the amount of time a client WebSocket will wait until it closes the TCP connection after receiving a close frame.

    When a WebSocket is closed, the server should close the TCP connection. This timeout will close the TCP connection on the client when it expires.

    Set to 0L closes the TCP connection immediately after receiving the close frame.

    Set to a negative value to disable it.

    Parameters

    • webSocketClosingTimeout: number

    Returns HttpClientOptions

setWebSocketCompressionAllowClientNoContext

  • setWebSocketCompressionAllowClientNoContext(webSocketCompressionAllowClientNoContext: boolean): HttpClientOptions
  • Set whether the client_no_context_takeover parameter of the WebSocket per-message deflate compression extension will be offered.

    Parameters

    • webSocketCompressionAllowClientNoContext: boolean

    Returns HttpClientOptions

setWebSocketCompressionLevel

  • Set the WebSocket deflate compression level.

    Parameters

    • webSocketCompressionLevel: number

    Returns HttpClientOptions

setWebSocketCompressionRequestServerNoContext

  • setWebSocketCompressionRequestServerNoContext(webSocketCompressionRequestServerNoContext: boolean): HttpClientOptions
  • Set whether the server_no_context_takeover parameter of the WebSocket per-message deflate compression extension will be offered.

    Parameters

    • webSocketCompressionRequestServerNoContext: boolean

    Returns HttpClientOptions

setWriteIdleTimeout

  • Set the write idle timeout, default time unit is seconds. Zero means don't timeout. This determines if a connection will timeout and be closed if no data is sent within the timeout.

    If you want change default time unit, use HttpClientOptions

    Parameters

    • writeIdleTimeout: number

    Returns HttpClientOptions

toJson

  • toJson(): {}
  • Returns {}

    • [key: string]: any

Generated using TypeDoc