Uses of Class
com.microsoft.tfs.core.httpclient.methods.multipart.Part

Packages that use Part
com.microsoft.tfs.core.httpclient.methods Classes implementing org.apache.commons.httpclient.HttpMethod for the base HTTP methods. 
com.microsoft.tfs.core.httpclient.methods.multipart Provides Multipart support classes for the org.apache.commons.httpclient.methods.MultipartPostMethod
 

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

Methods in com.microsoft.tfs.core.httpclient.methods that return Part
 Part[] MultipartPostMethod.getParts()
          Deprecated. Returns all parts.
 

Methods in com.microsoft.tfs.core.httpclient.methods with parameters of type Part
 void MultipartPostMethod.addPart(Part part)
          Deprecated. Adds a part.
 

Uses of Part in com.microsoft.tfs.core.httpclient.methods.multipart
 

Subclasses of Part in com.microsoft.tfs.core.httpclient.methods.multipart
 class FilePart
          This class implements a part of a Multipart post object that consists of a file.
 class PartBase
          Provides setters and getters for the basic Part properties.
 class StringPart
          Simple string parameter for a multipart post
 

Fields in com.microsoft.tfs.core.httpclient.methods.multipart declared as Part
protected  Part[] MultipartRequestEntity.parts
          The MIME parts as set by the constructor
 

Methods in com.microsoft.tfs.core.httpclient.methods.multipart with parameters of type Part
static long Part.getLengthOfParts(Part[] parts)
          Return the total sum of all parts and that of the last boundary
static long Part.getLengthOfParts(Part[] parts, byte[] partBoundary)
          Gets the length of the multipart message including the given parts.
static void Part.sendParts(java.io.OutputStream out, Part[] parts)
          Write all parts and the last boundary to the specified output stream.
static void Part.sendParts(java.io.OutputStream out, Part[] parts, byte[] partBoundary)
          Write all parts and the last boundary to the specified output stream.
 

Constructors in com.microsoft.tfs.core.httpclient.methods.multipart with parameters of type Part
MultipartRequestEntity(Part[] parts, HttpMethodParams params)
          Creates a new multipart entity containing the given parts.
 



© 2015 Microsoft. All rights reserved.