Uses of Class
com.microsoft.tfs.core.httpclient.NameValuePair

Packages that use NameValuePair
com.microsoft.tfs.core.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
com.microsoft.tfs.core.httpclient.cookie Provides cookie handling in conjunction with org.apache.commons.httpclient.Cookie
com.microsoft.tfs.core.httpclient.methods Classes implementing org.apache.commons.httpclient.HttpMethod for the base HTTP methods. 
com.microsoft.tfs.core.httpclient.util Provides some utility classes for use by HttpClient. 
 

Uses of NameValuePair in com.microsoft.tfs.core.httpclient
 

Subclasses of NameValuePair in com.microsoft.tfs.core.httpclient
 class Cookie
           HTTP "magic-cookie" represents a piece of state information that the HTTP agent and the target server can exchange to maintain a session.
 class Header
           An HTTP header.
 class HeaderElement
           One element of an HTTP header's value.
 

Methods in com.microsoft.tfs.core.httpclient that return NameValuePair
 NameValuePair HeaderElement.getParameterByName(java.lang.String name)
          Returns parameter with the given name, if found.
 NameValuePair[] HeaderElement.getParameters()
          Get parameters, if any.
 

Methods in com.microsoft.tfs.core.httpclient with parameters of type NameValuePair
 void HttpMethodBase.setQueryString(NameValuePair[] params)
          Sets the query string of this HTTP method.
 void HttpMethod.setQueryString(NameValuePair[] params)
          Sets the query string of this HTTP method.
 

Constructors in com.microsoft.tfs.core.httpclient with parameters of type NameValuePair
HeaderElement(java.lang.String name, java.lang.String value, NameValuePair[] parameters)
          Constructor with name, value and parameters.
 

Uses of NameValuePair in com.microsoft.tfs.core.httpclient.cookie
 

Subclasses of NameValuePair in com.microsoft.tfs.core.httpclient.cookie
 class Cookie2
           Cookie class for RFC2965Spec cookie specification.
 

Methods in com.microsoft.tfs.core.httpclient.cookie with parameters of type NameValuePair
 void RFC2965Spec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse RFC 2965 specific cookie attribute and update the corresponsing Cookie properties.
 void RFC2109Spec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse RFC 2109 specific cookie attribute and update the corresponsing Cookie properties.
 void NetscapeDraftSpec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse the cookie attribute and update the corresponsing Cookie properties as defined by the Netscape draft specification
 void IgnoreCookiesSpec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Does nothing.
 void CookieSpecBase.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse the cookie attribute and update the corresponsing Cookie properties.
 void CookieSpec.parseAttribute(NameValuePair attribute, Cookie cookie)
          Parse the cookie attribute and update the corresponsing Cookie properties.
 

Uses of NameValuePair in com.microsoft.tfs.core.httpclient.methods
 

Methods in com.microsoft.tfs.core.httpclient.methods that return NameValuePair
 NameValuePair PostMethod.getParameter(java.lang.String paramName)
          Gets the parameter of the specified name.
 NameValuePair[] PostMethod.getParameters()
          Gets the parameters currently added to the PostMethod.
 

Methods in com.microsoft.tfs.core.httpclient.methods with parameters of type NameValuePair
 void PostMethod.addParameter(NameValuePair param)
          Adds a new parameter to be used in the POST request body.
 void PostMethod.addParameters(NameValuePair[] parameters)
          Adds an array of parameters to be used in the POST request body.
 void PostMethod.setRequestBody(NameValuePair[] parametersBody)
          Sets an array of parameters to be used in the POST request body
 

Uses of NameValuePair in com.microsoft.tfs.core.httpclient.util
 

Methods in com.microsoft.tfs.core.httpclient.util that return types with arguments of type NameValuePair
 java.util.List<NameValuePair> ParameterParser.parse(char[] chars, char separator)
          Extracts a list of NameValuePairs from the given array of characters.
 java.util.List<NameValuePair> ParameterParser.parse(char[] chars, int offset, int length, char separator)
          Extracts a list of NameValuePairs from the given array of characters.
 java.util.List<NameValuePair> ParameterParser.parse(java.lang.String str, char separator)
          Extracts a list of NameValuePairs from the given string.
 

Methods in com.microsoft.tfs.core.httpclient.util with parameters of type NameValuePair
 java.lang.String ParameterFormatter.format(NameValuePair param)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
 void ParameterFormatter.format(java.lang.StringBuffer buffer, NameValuePair param)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
static java.lang.String EncodingUtil.formUrlEncode(NameValuePair[] pairs, java.lang.String charset)
          Form-urlencoding routine.
 



© 2015 Microsoft. All rights reserved.