Blog.Common.Identity.OAuth.BlogOAuthAuthorizationServerProvider.BlogOAuthAuthorizationServerProvider C# (CSharp) Méthode

BlogOAuthAuthorizationServerProvider() public méthode

public BlogOAuthAuthorizationServerProvider ( string publicClientId ) : System
publicClientId string
Résultat System
        public BlogOAuthAuthorizationServerProvider(string publicClientId)
        {
            if (publicClientId == null)
            {
                throw new ArgumentNullException("publicClientId");
            }

            _publicClientId = publicClientId;
        }