コード例 #1
0
        public async Task HandleRequest(SamlRequestContext context)
        {
            var builders = this.GetBuilders();

            foreach (var b in builders.OrderBy(x => x.Order))
            {
                await b.Build(context.BindingContext);
            }
            var httpRedirectContext = context as HttpRedirectRequestContext;
            await httpRedirectContext.RequestHanlerAction(context.BindingContext.GetDestinationUrl());
        }
コード例 #2
0
 public Task HandleRequest(SamlRequestContext context)
 {
     throw new NotImplementedException();
 }