Microsoft.AspNet.Identity.IdentityResult.ToJsonString()

Here are the examples of the csharp api class Microsoft.AspNet.Identity.IdentityResult.ToJsonString() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: osharp
Source File: TestsController.cs
public async Task<ActionResult> Test2()
        {
            UserManager manager = ServiceProvider.GetService<UserManager>();
            IdentityResult result = await manager.AddPasswordAsync(1, "gmf31529019");
            return Content(result.ToJsonString());
        }