Class HttpOperationResponse
Represents the base return type of all ServiceClient REST operations without response body.
Inherited Members
Namespace: k8s.Autorest
Assembly: KubernetesClient.dll
Syntax
public class HttpOperationResponse : IHttpOperationResponse, IDisposable
Constructors
View SourceHttpOperationResponse()
Declaration
public HttpOperationResponse()
Properties
View SourceRequest
Gets information about the associated HTTP request.
Declaration
public HttpRequestMessage Request { get; set; }
Property Value
| Type | Description |
|---|---|
| HttpRequestMessage |
Response
Gets information about the associated HTTP response.
Declaration
public HttpResponseMessage Response { get; set; }
Property Value
| Type | Description |
|---|---|
| HttpResponseMessage |
Methods
View SourceDispose()
Dispose the HttpOperationResponse.
Declaration
public void Dispose()
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. |