private static AppFunc Conversion2(OwinMiddleware next) { return new OwinMiddlewareTransition(next).Invoke; }
private static AppFunc Conversion2(OwinMiddleware next) { throw new NotImplementedException(); }
/// <summary> /// /// </summary> /// <param name="next"></param> public OwinMiddlewareTransition(OwinMiddleware next) { _next = next; }
public BreadCrumbMiddleware(OwinMiddleware next, string crumb, string expectedStage) : base(next) { _crumb = crumb; _expectedStage = expectedStage; }