Guest User

Untitled

a guest
Feb 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. if (ModelState.ContainsKey("Input.Card"))
  2. ModelState["Input.Card"].Errors.Clear();
  3.  
  4. ModelState.Clear(); // Limpa todos
  5.  
  6. foreach (var modelValue in ModelState.Values)
  7. {
  8. modelValue.Errors.Clear();
  9. }
Add Comment
Please, Sign In to add comment