BridgeStack.AuthorizedStackClient.AuthorizedStackClient C# (CSharp) Метод

AuthorizedStackClient() приватный Метод

Instances the AuthorizedStackClient implementation.
private AuthorizedStackClient ( string appKey, string accessToken, StackClientPlugins plugins ) : System
appKey string The application's key. Grants a higher request quota.
accessToken string The user's access token. Grants authentication and access to methods which require that the application be acting on behalf of a user in order to be invoked.
plugins StackClientPlugins The plugins to register with this AuthorizedStackClient instance.
Результат System
        internal AuthorizedStackClient(string appKey, string accessToken, StackClientPlugins plugins)
            : base(appKey, plugins)
        {
            if (accessToken == null)
            {
                throw new ArgumentNullException("accessToken");
            }
            AccessToken = accessToken;
        }