Show / Hide Table of Contents

Class CryptoSqlnetParameterValue

SQLNET parameter value payload.

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

Properties

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CryptoSqlnetParameterValue.TypeEnum? Type { get; set; }
Property Value
Type Description
CryptoSqlnetParameterValue.TypeEnum?

Value type of the SQLNET parameter.

Remarks

Required

Value

Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public object Value { get; set; }
Property Value
Type Description
object

Parsed SQLNET parameter value. TEXT returns a string, BOOLEAN returns a boolean, and LIST returns an array of strings.

Remarks

Required

In this article
Back to top