DOMError.SeverityFatalError Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
Use 'Org.W3c.Dom.IDOMError.SeverityFatalError'. This class will be removed in a future release.
The severity of the error described by the DOMError
is
fatal error.
[Android.Runtime.Register("SEVERITY_FATAL_ERROR")]
[System.Obsolete("Use 'Org.W3c.Dom.IDOMError.SeverityFatalError'. This class will be removed in a future release.")]
public const short SeverityFatalError = 3;
[<Android.Runtime.Register("SEVERITY_FATAL_ERROR")>]
[<System.Obsolete("Use 'Org.W3c.Dom.IDOMError.SeverityFatalError'. This class will be removed in a future release.")>]
val mutable SeverityFatalError : int16
Field Value
Value = 3- Attributes
Remarks
The severity of the error described by the DOMError
is fatal error. A SEVERITY_FATAL_ERROR
will cause the normal processing to stop. The return value of DOMErrorHandler.handleError()
is ignored unless the implementation chooses to continue, in which case the behavior becomes undefined.
Java documentation for org.w3c.dom.DOMError.SEVERITY_FATAL_ERROR
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.