IdokladSdk.ApiContext.ApiContext C# (CSharp) Method

ApiContext() public method

public ApiContext ( string accessToken ) : System
accessToken string
return System
        public ApiContext(string accessToken)
        {
            if (accessToken.IsNullOrEmpty())
            {
                throw new ArgumentNullException("Access Token can not be null");
            }

            AccessToken = accessToken;
        }
    }
ApiContext