Show / Hide Table of Contents

Class Request

A container object for request attributes.

Inheritance
object
Request
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AuditService.Models
Assembly: OCI.DotNetSDK.Audit.dll
Syntax
public class Request

Properties

Action

Declaration
[JsonProperty(PropertyName = "action")]
public string Action { get; set; }
Property Value
Type Description
string

The HTTP method of the request.
Example: GET

Headers

Declaration
[JsonProperty(PropertyName = "headers")]
public Dictionary<string, List<string>> Headers { get; set; }
Property Value
Type Description
Dictionary<string, List<string>>

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The opc-request-id of the request.

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public Dictionary<string, List<string>> Parameters { get; set; }
Property Value
Type Description
Dictionary<string, List<string>>

The parameters supplied by the caller during this operation.

Path

Declaration
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
Property Value
Type Description
string
In this article
Back to top