Breeze.Entities.EntityErrorsException.EntityErrorsException C# (CSharp) Метод

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

public EntityErrorsException ( IEnumerable entityErrors ) : Newtonsoft.Json
entityErrors IEnumerable
Результат Newtonsoft.Json
        public EntityErrorsException(IEnumerable<EntityError> entityErrors)
        {
            EntityErrors = entityErrors.ToList();
            StatusCode = HttpStatusCode.Forbidden;
        }

Same methods

EntityErrorsException::EntityErrorsException ( String message, IEnumerable entityErrors ) : Newtonsoft.Json
EntityErrorsException