Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Body (0.08 sec)

  1. src/main/java/org/codelibs/curl/CurlRequest.java

        }
    
        public CurlRequest body(final String body) {
            if (bodyStream != null) {
                throw new CurlException("body method is already called.");
            }
            this.body = body;
            return this;
        }
    
        public CurlRequest body(final InputStream stream) {
            if (body != null) {
                throw new CurlException("body method is already called.");
            }
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top