Azure.Response
Represents the HTTP response from the service.
namespace Azure
{
public abstract class Response : IDisposable
{
public abstract int Status { get; }
public abstract string ReasonPhrase { get; }
public abstract Stream ContentStream { get; set; }
public abstract string ClientRequestId { get; set; }
public virtual ResponseHeaders Headers { get; }
public virtual BinaryData Content { get; }
public virtual bool IsError { get; }
public abstract void Dispose();
public static Response<T> FromValue<[System.Runtime.CompilerServices.Nullable(2)] T>(T value, Response response);
protected Response();
}
}