Show / Hide Table of Contents

Class UnifiedJSONParser

JSON parser.

Inheritance
object
UnifiedAgentParser
UnifiedJSONParser
Inherited Members
UnifiedAgentParser.FieldTimeKey
UnifiedAgentParser.Types
UnifiedAgentParser.NullValuePattern
UnifiedAgentParser.IsNullEmptyString
UnifiedAgentParser.IsEstimateCurrentEvent
UnifiedAgentParser.IsKeepTimeKey
UnifiedAgentParser.TimeoutInMilliseconds
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoggingService.Models
Assembly: OCI.DotNetSDK.Logging.dll
Syntax
public class UnifiedJSONParser : UnifiedAgentParser

Properties

ParseNested

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

If true, a separator parameter can be further defined.

Separator

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

Keys of adjacent levels are joined by the separator.

TimeFormat

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

Process time value using the specified format.

TimeType

Declaration
[JsonProperty(PropertyName = "timeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UnifiedJSONParser.TimeTypeEnum? TimeType { get; set; }
Property Value
Type Description
UnifiedJSONParser.TimeTypeEnum?

JSON parser time type.

In this article
Back to top