SecureBlackbox 2020 iOS Edition

Questions / Feedback?

errorSeverity (property)

The severity of the error that happened.

Syntax

@property (nonatomic,readwrite,assign,getter=errorSeverity,setter=setErrorSeverity:) int errorSeverity;
- (int)errorSeverity;
- (void)setErrorSeverity:(int)newErrorSeverity;

/* Possible Values */
ES_INFO(0),
ES_WARNING(1),
ES_FATAL(2)
public var errorSeverity: TlsserverErrorSeverities {
  get {...}
set {...} }
public enum TlsserverErrorSeverities : Int32 { case esInfo = 0 case esWarning = 1 case esFatal = 2 }

Default Value

1

Remarks

Use this property to establish whether the error is fatal.

esWarning1
esFatal2

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 iOS Edition - Version 20.0 [Build 8166]