BMPNetworkConfiguration


@interface BMPNetworkConfiguration : 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 (readwrite, nonatomic, nullable) id<BMPPreprocessHttpRequestDelegate>
        preprocessHttpRequestDelegate;

    Swift

    weak var preprocessHttpRequestDelegate: PreprocessHttpRequestDelegate? { get set }