[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See Storage Client Library for the latest version.]
Gets the blob's ETag value. Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Gets the blob's ETag value. Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim instance As BlobProperties Dim value As String value = instance.ETag |
Syntax
Visual Basic |
---|
Public Property ETag As String |
C# |
---|
public string ETag { get; } |
C++ |
---|
public: property String^ ETag { String^ get (); } |
J# |
---|
JScript |
---|
Property Value
The blob's ETag value.Remarks
The ETag value is an identifier assigned to the blob by the Blob service. It is updated on write operations to the blob. It may be used to perform operations conditionally, providing concurrency control and improved efficiency.
The IfMatch and IfNoneMatch methods take an ETag value and return an AccessCondition that may be specified on the request.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.