Skip to content

Commit

Permalink
Use T
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 24, 2024
1 parent 1bb80fd commit a8a13b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ This repository contains the source for ServiceStack plugins for the leading And
Added new ServiceClient APIs:

```java
<TResponse> TResponse postFileWithRequest(IReturn<TResponse> request, FileUpload file);
<TResponse> TResponse postFileWithRequest(Object request, FileUpload file, Object responseType);
<TResponse> TResponse postFileWithRequest(String path, Object request, FileUpload file, Object responseType);
<T> TResponse postFileWithRequest(IReturn<T> request, FileUpload file);
<T> TResponse postFileWithRequest(Object request, FileUpload file, Object responseType);
<T> TResponse postFileWithRequest(String path, Object request, FileUpload file, Object responseType);

<TResponse> TResponse postFilesWithRequest(IReturn<TResponse> request, FileUpload[] files);
<TResponse> TResponse postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
<TResponse> TResponse postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
<T> TResponse postFilesWithRequest(IReturn<T> request, FileUpload[] files);
<T> TResponse postFilesWithRequest(Object request, FileUpload[] files, Object responseType);
<T> TResponse postFilesWithRequest(String path, Object request, FileUpload[] files, Object responseType);
```

Added new AsyncServiceClient APIs:
Expand Down

0 comments on commit a8a13b5

Please sign in to comment.