/// <summary> /// Initializes a new instance of the <see cref="HealthGraphApiFixture"/> class. /// </summary> public HealthGraphApiFixture() { Auth = new HealthGraphAuth { ClientId = clientID, ClientSecret = clientSecret, RedirectUri = new Uri(redirectUri) }; Token = new HealthGraphToken { TokenType = tokenType, AccessToken = accessToken }; }
/// <summary> /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// </summary> public void Dispose() { Auth = null; Token = null; }