C# Класс NHibernate.PropertyAccessException

Наследование: NHibernate.HibernateException, ISerializable
Показать файл Открыть проект

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

Метод Описание
PropertyAccessException ( Exception innerException, string message, bool wasSetter, System persistentType ) : System
PropertyAccessException ( Exception innerException, string message, bool wasSetter, System persistentType, string propertyName ) : System

Initializes a new instance of the PropertyAccessException class.

Защищенные методы

Метод Описание
PropertyAccessException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the PropertyAccessException class with serialized data.

Приватные методы

Метод Описание
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

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

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

public PropertyAccessException ( Exception innerException, string message, bool wasSetter, System persistentType ) : System
innerException System.Exception
message string
wasSetter bool
persistentType System
Результат System

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

Initializes a new instance of the PropertyAccessException class.
public PropertyAccessException ( Exception innerException, string message, bool wasSetter, System persistentType, string propertyName ) : System
innerException System.Exception /// The exception that is the cause of the current exception. If the innerException parameter /// is not a null reference, the current exception is raised in a catch block that handles /// the inner exception. ///
message string The message that describes the error.
wasSetter bool A indicating if this was a "setter" operation.
persistentType System The that NHibernate was trying find the Property or Field in.
propertyName string The mapped property name that was trying to be accessed.
Результат System

PropertyAccessException() защищенный Метод

Initializes a new instance of the PropertyAccessException class with serialized data.
protected PropertyAccessException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The that holds the serialized object /// data about the exception being thrown. ///
context System.Runtime.Serialization.StreamingContext /// The that contains contextual information about the source or destination. ///
Результат System