From a8142b8858f0cd6fc1b55efca606f41213e57a0f Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Thu, 9 Jun 2016 11:08:16 -0700 Subject: [PATCH] Fix #4614 - update IModelBinder docs --- .../ModelBinding/IModelBinder.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Microsoft.AspNetCore.Mvc.Abstractions/ModelBinding/IModelBinder.cs b/src/Microsoft.AspNetCore.Mvc.Abstractions/ModelBinding/IModelBinder.cs index 948af2f376..67cfb95218 100644 --- a/src/Microsoft.AspNetCore.Mvc.Abstractions/ModelBinding/IModelBinder.cs +++ b/src/Microsoft.AspNetCore.Mvc.Abstractions/ModelBinding/IModelBinder.cs @@ -16,15 +16,15 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding /// The . /// /// - /// A which on completion returns a which - /// represents the result of the model binding process. + /// A which will complete when the model binding process completes. /// /// - /// If model binding was successful, the should be a value created - /// with . If model binding failed, the - /// should be a value created with . - /// If there was no data, or this model binder cannot handle the operation, the - /// should be null. + /// If model binding was successful, the should have + /// set to true. + /// + /// + /// A model binder that completes successfully should set to + /// a value returned from . /// /// Task BindModelAsync(ModelBindingContext bindingContext);