Show / Hide Table of Contents

Interface IModuleValidator

Provides an abstraction for a validating a module.

Namespace: IRM.AspNetCore.Identity
Assembly: IRM.AspNetCore.Identity.dll
Syntax
public interface IModuleValidator

Methods

ValidateAsync(ModuleManager, Module)

Validates a module as an asynchronous operation.

Declaration
Task<IdentityResult> ValidateAsync(ModuleManager manager, Module module)
Parameters
ModuleManager manager

The ModuleManager managing the module store.

Module module

The module to validate.

Returns
System.Threading.Tasks.Task<IdentityResult>

A System.Threading.Tasks.Task<TResult> that represents the IdentityResult of the asynchronous validation.

Back to top Generated by DocFX