Show / Hide Table of Contents

Class ReleasedObjectInfo

Provides the version state of a successfully released blob or container object.

Inheritance
System.Object
ReleasedObjectInfo
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class ReleasedObjectInfo

Constructors

ReleasedObjectInfo(ETag, DateTimeOffset)

Creates a new ReleasedObjectInfo.

Declaration
public ReleasedObjectInfo (Azure.ETag eTag, DateTimeOffset lastModified);
Parameters
Azure.ETag eTag

The ETag contains a value that you can use to perform operations conditionally.

System.DateTimeOffset lastModified

The date and time the object was last modified.

Properties

ETag

The ETag contains a value that you can use to perform operations conditionally. If the request version is 2011-08-18 or newer, the ETag value will be in quotes.

Declaration
public Azure.ETag ETag { get; }
Property Value
Azure.ETag

LastModified

Returns the date and time the object was last modified. Any operation that modifies the blob or container, including an update of the object's metadata or properties, changes the last-modified time of the object.

Declaration
public DateTimeOffset LastModified { get; }
Property Value
System.DateTimeOffset

Methods

Equals(Object)

Check if two ReleasedObjectInfo instances are equal.

Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
System.Object obj

The instance to compare to.

Returns
System.Boolean

True if they're equal, false otherwise.

GetHashCode()

Get a hash code for the ReleasedObjectInfo.

Declaration
[System.ComponentModel.EditorBrowsable]
public override int GetHashCode ();
Returns
System.Int32

Hash code for the ReleasedObjectInfo.

ToString()

Creates a string representation of a ReleasedObjectInfo.

Declaration
[System.ComponentModel.EditorBrowsable]
public override string ToString ();
Returns
System.String

Back to top Azure SDK for .NET