Skip to content

Inheritdoc fixes #5823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ void ICollection<KeyValuePair<string, TValue>>.CopyTo(KeyValuePair<string, TValu
bool ICollection<KeyValuePair<string, TValue>>.Remove(KeyValuePair<string, TValue> item) => ((ICollection<KeyValuePair<string, TValue>>)_dictionary).Remove(item);

/// <summary>Attempts to extract a typed value from the dictionary.</summary>
/// <typeparam name="T">Specifies the type of the value to be retrieved.</typeparam>
/// <typeparam name="T">The type of the value to be retrieved.</typeparam>
/// <param name="key">The key to locate.</param>
/// <param name="value">
/// The value retrieved from the dictionary, if found and successfully converted to the requested type;
/// When this method returns, contains the value retrieved from the dictionary, if found and successfully converted to the requested type;
/// otherwise, the default value of <typeparamref name="T"/>.
/// </param>
/// <returns>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ public class FakeHostOptions
/// </value>
public bool FakeLogging { get; set; } = true;

/// <inheritdoc cref="ServiceProviderOptions"/>
/// <inheritdoc cref="ServiceProviderOptions.ValidateScopes"/>
public bool ValidateScopes { get; set; } = true;

/// <inheritdoc cref="ServiceProviderOptions"/>
/// <inheritdoc cref="ServiceProviderOptions.ValidateOnBuild"/>
public bool ValidateOnBuild { get; set; } = true;

/// <summary>
Expand Down