C# Class Breeze.Entities.EntityError

Represents a validation error on a specific entity
Show file Open project: Breeze/breeze.server.net

Public Properties

Property Type Description
EntityTypeName String
ErrorMessage string
ErrorName String
KeyValues Object[]
PropertyName String

Property Details

EntityTypeName public property

Type of the entity on which the error occurred
public String EntityTypeName
return String

ErrorMessage public property

Message describing the error.
public string ErrorMessage
return string

ErrorName public property

Error type (may be used by client code for error display or categorization)
public String ErrorName
return String

KeyValues public property

Entity key values to identify the entity on which the error occurred.
public Object[] KeyValues
return Object[]

PropertyName public property

Property on which the error occurred. May be blank if the error was not specific to one property.
public String PropertyName
return String