Table of Contents

Class PartETag

Namespace
Amazon.S3.Model
Assembly
AWSSDK.S3.dll

A container holding the part number and etag used when completing a multipart upload.

public class PartETag : IComparable<PartETag>
Inheritance
PartETag
Implements
Derived
Inherited Members

Constructors

PartETag()

Default constructor.

public PartETag()

PartETag(int, string)

Constructs an instance of PartETag and sets the part number and etag.

public PartETag(int partNumber, string eTag)

Parameters

partNumber int

The part number.

eTag string

the associated ETag for the part number.

Properties

ETag

The entity tag associated with the part.

public string ETag { get; set; }

Property Value

string

PartNumber

The part number identifying the part.

public int PartNumber { get; set; }

Property Value

int

Methods

CompareTo(PartETag)

Compares the current object with another object of the same type.

public int CompareTo(PartETag other)

Parameters

other PartETag

An object to compare with this object.

Returns

int

A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the other parameter. Zero This object is equal to other. Greater than zero This object is greater than other.