Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for queryParameter (0.08 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(url.queryParameter("a =& b")).isNull()
      }
    
      @Test
      fun composeQuerySetQueryParameter() {
        val url =
          parse("http://host/").newBuilder()
            .addQueryParameter("a+=& b", "c+=& d")
            .setQueryParameter("a+=& b", "ef")
            .build()
        assertThat(url.toString()).isEqualTo("http://host/?a%2B%3D%26%20b=ef")
        assertThat(url.queryParameter("a+=& b")).isEqualTo("ef")
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
    
      /**
       * The first query parameter named `name` decoded using UTF-8, or null if there is no such query
       * parameter.
       *
       * | URL                               | `queryParameter("a")` |
       * | :-------------------------------- | :-------------------- |
       * | `http://host/`                    | null                  |
       * | `http://host/?`                   | null                  |
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. okhttp/api/okhttp.api

    	public final fun pathSegments ()Ljava/util/List;
    	public final fun pathSize ()I
    	public final fun port ()I
    	public final fun query ()Ljava/lang/String;
    	public final fun queryParameter (Ljava/lang/String;)Ljava/lang/String;
    	public final fun queryParameterName (I)Ljava/lang/String;
    	public final fun queryParameterNames ()Ljava/util/Set;
    	public final fun queryParameterValue (I)Ljava/lang/String;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top