API Reference

Class

HtmlDomLimitException

Namespace OfficeIMO.Html
Assembly OfficeIMO.Html
Base InvalidOperationException
Implements
ISerializable
Modifiers sealed

Thrown when shared HTML DOM traversal exceeds configured safety limits.

Inheritance

  • InvalidOperationException
  • HtmlDomLimitException

Constructors

public HtmlDomLimitException(String code, String message, String source, Int64 actual, Int64 limit) #

Creates an HTML DOM traversal limit exception.

Parameters

code System.String requiredposition: 0
Stable diagnostic code associated with the limit.
message System.String requiredposition: 1
Human-readable message.
source System.String requiredposition: 2
Configured limit source that was exceeded.
actual System.Int64 requiredposition: 3
Observed value.
limit System.Int64 requiredposition: 4
Configured limit.

Properties

public String Code { get; } #

Stable diagnostic code associated with the limit.

public String LimitSource { get; } #

Configured limit source that was exceeded.

public Int64 Actual { get; } #

Observed value.

public Int64 Limit { get; } #

Configured limit.

public String Detail { get; } #

Formatted detail containing the observed and configured values.