Skip to content
Merged
Changes from 3 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 @@ -145,9 +145,15 @@ public ValidationContext(object instance, string displayName, IServiceProvider?
/// <para>Consume this instance with caution!</para>
/// </summary>
/// <remarks>
/// <para>
/// During validation, especially property-level validation, the object instance might be in an indeterminate state.
/// For example, the property being validated, as well as other properties on the instance might not have been
/// updated to their new values.
/// </para>
/// <para>
/// When validation is performed without an owning object (for example, validating standalone values),
/// <see cref="ObjectInstance" /> may be a placeholder and should not be treated as the owner of the value.
/// </para>
/// </remarks>
public object ObjectInstance { get; }

Expand Down
Loading