Class TableResult
- Namespace
- Microsoft.WindowsAzure.Storage.Table
- Assembly
- Microsoft.WindowsAzure.Storage.dll
Represents the result of a table operation.
public sealed class TableResult
- Inheritance
-
TableResult
- Inherited Members
Remarks
The TableResult class encapsulates the HTTP response and any entities returned for a particular TableOperation.
Constructors
TableResult()
public TableResult()
Properties
Etag
Gets or sets the ETag returned with the TableOperation request results.
public string Etag { get; set; }
Property Value
- string
The ETag returned with the TableOperation request results.
HttpStatusCode
Gets or sets the HTTP status code returned by a TableOperation request.
public int HttpStatusCode { get; set; }
Property Value
- int
The HTTP status code returned by a TableOperation request.
Result
Gets or sets the result returned by the TableOperation as an object.
public object Result { get; set; }