Blog.Common.Identity.OAuth.BlogOAuthAuthorizationServerProvider.BlogOAuthAuthorizationServerProvider C# (CSharp) Method

BlogOAuthAuthorizationServerProvider() public method

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

            _publicClientId = publicClientId;
        }