Class ReleasedObjectInfo
Provides the version state of a succesfully released blob or container object.
Namespace: Azure.Storage.Blobs.Models
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
ETag
eTag
The ETag contains a value that you can use to perform operations conditionally. |
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
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
DateTimeOffset
|
Methods
Equals(Object)
Check if two ReleasedObjectInfo instances are equal.
Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
Object
obj
The instance to compare to. |
Returns
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
Int32
Hash code for the ReleasedObjectInfo. |
ToString()
Creates a string representation of a ReleasedObjectInfo.
Declaration
[System.ComponentModel.EditorBrowsable]
public override string ToString ();
Returns
String
|