Show / Hide Table of Contents

Class HttpOperationResponse

Represents the base return type of all ServiceClient REST operations without response body.

Inheritance
object
HttpOperationResponse
HttpOperationResponse<T>
Implements
IHttpOperationResponse
IDisposable
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: k8s.Autorest
Assembly: KubernetesClient.dll
Syntax
public class HttpOperationResponse : IHttpOperationResponse, IDisposable

Constructors

View Source

HttpOperationResponse()

Declaration
public HttpOperationResponse()

Properties

View Source

Request

Gets information about the associated HTTP request.

Declaration
public HttpRequestMessage Request { get; set; }
Property Value
Type Description
HttpRequestMessage
View Source

Response

Gets information about the associated HTTP response.

Declaration
public HttpResponseMessage Response { get; set; }
Property Value
Type Description
HttpResponseMessage

Methods

View Source

Dispose()

Dispose the HttpOperationResponse.

Declaration
public void Dispose()
View Source

Dispose(bool)

Dispose the HttpClient and Handlers.

Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
bool disposing

True to release both managed and unmanaged resources; false to releases only unmanaged resources.

Implements

IHttpOperationResponse
IDisposable
  • View Source
In this article
Back to top Generated by DocFX