BMPNetworkConfiguration

Objective-C


@interface BMPNetworkConfiguration : NSObject

Swift

class NetworkConfiguration : NSObject

The network configuration gives the ability to influence network requests. It enables preprocessing requests, processing responses or influencing the retry behavior.

  • Can be used to change request parameters before a request is made. Default value is nil.

    Declaration

    Objective-C

    @property (nonatomic, weak, nullable) id<BMPPreprocessHttpRequestDelegate> preprocessHttpRequestDelegate;

    Swift

    weak var preprocessHttpRequestDelegate: PreprocessHttpRequestDelegate? { get set }