File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ the following diagram provides an overview of the data classes exposed by Micros
3030
3131``` mermaid
3232classDiagram
33+ direction TB
3334 namespace ApplicationOptions {
3435 class CredentialDescription {
3536 <<ro>> +string Id
@@ -184,7 +185,7 @@ namespace TokenAcquisition {
184185 }
185186
186187 class IAuthorizationHeaderProvider { <<interface>> }
187- class IAuthorizationHeaderProvider~ TResult~ { <<interface>> }
188+ class IAuthorizationHeaderProvider< TResult> { <<interface>> }
188189 class IDownstreamApi { <<interface>>
189190 +CallApiAsync(...)
190191 +CallApiForUserAsync(...)
@@ -519,7 +520,7 @@ It's also possible (and recommended) to use higher level APIs:
519520 AcquireTokenOptions --> "ManagedIdentity" ManagedIdentityOptions : Has
520521 IDownstreamApi ..> DownstreamApiOptions : Uses
521522 IAuthorizationHeaderProvider ..> AuthorizationHeaderProviderOptions : Uses
522- IAuthorizationHeaderProvider~ TResult~ { <<interface>> }
523+ IAuthorizationHeaderProvider< TResult> { <<interface>> }
523524
524525```
525526
You can’t perform that action at this time.
0 commit comments