Show / Hide Table of Contents

Class HeadDataFileResponse

Inheritance
object
OciResponse
HeadDataFileResponse
Implements
IOciResponse
Inherited Members
OciResponse.httpResponseMessage
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmconfigService.Responses
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class HeadDataFileResponse : OciResponse, IOciResponse

Properties

ContentDisposition

Declaration
[HttpConverter(TargetEnum.Header, "content-disposition")]
public string ContentDisposition { get; set; }
Property Value
Type Description
string

Content-Disposition header, as described in RFC 2616.

ContentEncoding

Declaration
[HttpConverter(TargetEnum.Header, "content-encoding")]
public string ContentEncoding { get; set; }
Property Value
Type Description
string

Content-Encoding header, as described in RFC 2616.

ContentLanguage

Declaration
[HttpConverter(TargetEnum.Header, "content-language")]
public string ContentLanguage { get; set; }
Property Value
Type Description
string

Content-Language header, as described in RFC 2616.

ContentLength

Declaration
[HttpConverter(TargetEnum.Header, "content-length")]
public long? ContentLength { get; set; }
Property Value
Type Description
long?

The object size in bytes.

ContentMd5

Declaration
[HttpConverter(TargetEnum.Header, "content-md5")]
public string ContentMd5 { get; set; }
Property Value
Type Description
string

The base-64 encoded MD5 hash of the request body as computed by the server.

ContentType

Declaration
[HttpConverter(TargetEnum.Header, "content-type")]
public string ContentType { get; set; }
Property Value
Type Description
string

Content-Type header, as described in RFC 2616.

Etag

Declaration
[HttpConverter(TargetEnum.Header, "etag")]
public string Etag { get; set; }
Property Value
Type Description
string

For optimistic concurrency control. See if-match.

LastModified

Declaration
[HttpConverter(TargetEnum.Header, "last-modified")]
public DateTime? LastModified { get; set; }
Property Value
Type Description
DateTime?

The last time the object was modified, as described in RFC 2616. Expressed in RFC 3339 timestamp format. Example: 2020-02-19T22:47:12.613Z

Metadata

Declaration
[HttpConverter(TargetEnum.Header, "metadata")]
public string Metadata { get; set; }
Property Value
Type Description
string

A string containing a JSON-encoded object with metadata related to the uploaded file or resource. Example: {"fileName":"report.pdf","uploader":"jane.doe","category":"financial"}

OpcClientRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-client-request-id")]
public string OpcClientRequestId { get; set; }
Property Value
Type Description
string

The client request ID.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Implements

IOciResponse
In this article
Back to top