C# Класс W3c.Ddr.Exceptions.ValueException

This is a subclass of DDRException and is thrown when an error is detected during an attempt to retrieve the value of a Property using one of the value accessor methods of the PropertyValue class. The exception code indicates the nature of the error.
Наследование: DDRException
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
INCOMPATIBLE_TYPES int
MULTIPLE_VALUES int
NOT_KNOWN int

Открытые методы

Метод Описание
ValueException ( ) : System
ValueException ( int code, Exception ex ) : System
ValueException ( int code, String message ) : System

Описание методов

ValueException() публичный Метод

public ValueException ( ) : System
Результат System

ValueException() публичный Метод

public ValueException ( int code, Exception ex ) : System
code int
ex System.Exception
Результат System

ValueException() публичный Метод

public ValueException ( int code, String message ) : System
code int
message String
Результат System

Описание свойств

INCOMPATIBLE_TYPES публичное статическое свойство

The value represented by the PropertyValue is incompatible with the return type of the method used to retrieve it.
public static int INCOMPATIBLE_TYPES
Результат int

MULTIPLE_VALUES публичное статическое свойство

The implementation is aware of multiple values for this Property.
public static int MULTIPLE_VALUES
Результат int

NOT_KNOWN публичное статическое свойство

The property value is unknown.
public static int NOT_KNOWN
Результат int