Auth0.Nancy.SelfHost.ModuleExtensions.ThenRedirectTo C# (CSharp) Méthode

ThenRedirectTo() public static méthode

public static ThenRedirectTo ( this response, string viewName ) : Response
response this
viewName string
Résultat Nancy.Response
        public static Response ThenRedirectTo(this IResponseFormatter response, string viewName)
        {
            return response.AsRedirect(viewName);
        }
    }