Show / Hide Table of Contents

Class Certificate_extensions

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

Properties

IsCritical

Declaration
[JsonProperty(PropertyName = "isCritical")]
public bool? IsCritical { get; set; }
Property Value
Type Description
bool?

The critical flag of the extension. Critical extensions must be processed, non-critical extensions can be ignored.

Name

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

The certificate extension name.

Value

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

The certificate extension value.

In this article
Back to top