You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,10 +99,17 @@ Fast-track functions return **(Data, URLResponse)** if you need to validate stat
99
99
```swift
100
100
/// Send custom request based on the specific request instance
101
101
/// - Parameters:
102
-
/// - request: A URL load request that is independent of protocol or URL scheme
103
-
/// - retry: ``RetryService.Strategy`` strategy Default value .exponential with 5 retry and duration 2.0
104
-
/// - validate: Set of custom validate fun ``Http.Validate`` For status code like an example Default value to validate statusCode == 200 You can set up diff combinations check out ``Http.Validate.Status``
105
-
/// - taskDelegate: A protocol that defines methods that URL session instances call on their delegates to handle task-level events
102
+
/// - request: A URL load request that is independent of protocol
103
+
/// or URL scheme
104
+
/// - retry: ``RetryService.Strategy`` strategy Default value
105
+
/// .exponential with 5 retry and duration 2.0
106
+
/// - validate: Set of custom validate fun ``Http.Validate`` For
107
+
/// status code like an example Default value to validate
108
+
/// statusCode == 200 You can set up diff combinations check out
109
+
/// ``Http.Validate.Status``
110
+
/// - taskDelegate: A protocol that defines methods that URL
111
+
/// session instances call on their delegates to handle task-level
0 commit comments