Skip to content

Commit d7865b6

Browse files
committed
Resolved XMLDoc references for new overloads
With the addition of an optional `isExtendedAttribute` parameter to the `AttributeValueCollection.SetValue()` overload, and an optional `isDirty` parameter to the `RelatedTopicCollection.SetTopic()` overload, some XMLDoc references needed to be updated.
1 parent 1fc3a6f commit d7865b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OnTopic/Collections/RelatedTopicCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class RelatedTopicCollection : KeyedCollection<string, NamedTopicCollecti
4040
/// with. This will be used when setting incoming relationships. In addition, a <see cref="RelatedTopicCollection"/> may
4141
/// be set as <paramref name="isIncoming"/> if it is specifically intended to track incoming relationships; if this is not
4242
/// set, then it will not allow incoming relationships to be set via the internal
43-
/// <see cref="SetTopic(String, Topic, Boolean)"/> overload.
43+
/// <see cref="SetTopic(String, Topic, Boolean, Boolean?)"/> overload.
4444
/// </remarks>
4545
public RelatedTopicCollection(Topic parent, bool isIncoming = false) : base(StringComparer.OrdinalIgnoreCase) {
4646
_parent = parent;

OnTopic/Topic.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public Topic? DerivedTopic {
643643
/// called by the <see cref="AttributeValueCollection"/>. This is intended to enforce local business logic, and prevent
644644
/// callers from introducing invalid data.To prevent a redirect loop, however, local properties need to inform the
645645
/// <see cref="AttributeValueCollection"/> that the business logic has already been enforced. To do that, they must either
646-
/// call <see cref="AttributeValueCollection.SetValue(String, String, Boolean?, Boolean, DateTime?)"/> with the
646+
/// call <see cref="AttributeValueCollection.SetValue(String, String, Boolean?, Boolean, DateTime?, Boolean?)"/> with the
647647
/// <c>enforceBusinessLogic</c> flag set to <c>false</c>, or, if they're in a separate assembly, call this overload.
648648
/// </remarks>
649649
/// <param name="key">The string identifier for the AttributeValue.</param>

0 commit comments

Comments
 (0)