Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/Zitadel/Api/ITokenProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,10 @@ static ITokenProvider ServiceAccount(
options);
}

internal DelegatingHandler CreateHandler();
/// <summary>
/// Creates the delegating handler for the token provider.
/// Made public to allow custom ITokenProvider implementations outside Zitadel.Net.
/// </summary>
/// <returns>A <see cref="DelegatingHandler"/> for the token provider.</returns>
public DelegatingHandler CreateHandler();
}
Loading