Table of Contents

Class ProhibitedValueException

Namespace
Ubiety.Stringprep.Core.Exceptions
Assembly
Ubiety.Stringprep.Core.dll

Prohibited value exception.

public class ProhibitedValueException : Exception, ISerializable
Inheritance
ProhibitedValueException
Implements
Inherited Members

Constructors

ProhibitedValueException()

Initializes a new instance of the ProhibitedValueException class.

public ProhibitedValueException()

ProhibitedValueException(char)

Initializes a new instance of the ProhibitedValueException class.

public ProhibitedValueException(char prohibited)

Parameters

prohibited char

Character that is prohibited.

ProhibitedValueException(int)

Initializes a new instance of the ProhibitedValueException class.

public ProhibitedValueException(int prohibited)

Parameters

prohibited int

Unicode code point that is prohibited.

ProhibitedValueException(string)

Initializes a new instance of the ProhibitedValueException class.

public ProhibitedValueException(string message)

Parameters

message string

Exception message.

ProhibitedValueException(string, Exception)

Initializes a new instance of the ProhibitedValueException class.

public ProhibitedValueException(string message, Exception innerException)

Parameters

message string

Exception message.

innerException Exception

Inner exception.

Properties

CodePoint

Gets the prohibited Unicode code point, or -1 when the exception was not raised for a specific code point.

public int CodePoint { get; }

Property Value

int