Auth0.Nancy.SelfHost.ModuleExtensions.ThenRedirectTo C# (CSharp) Method

ThenRedirectTo() public static method

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