Esempio n. 1
0
        public ActionResult <ServiceConfiguration> Get()
        {
            ServiceConfiguration config = new ServiceConfiguration(false, false, true, false, true, false)
            {
                DocumentationResource = "http://example.com/help/scim.html"
            };

            config.AddAuthenticationScheme(SCIMAuthenticationScheme.CreateOpenStandardForAuthorizationBearerTokenScheme());
            return(this.Ok(config));
        }