@@ -77,7 +77,7 @@ public void Clear(string relationshipKey) {
7777
7878 /// <inheritdoc cref="Clear(String)"/>
7979 [ ExcludeFromCodeCoverage ]
80- [ Obsolete ( "The ClearTopics(relationshipKey) method has been renamed to Clear(relationshipKey) ." , true ) ]
80+ [ Obsolete ( $ "The { nameof ( ClearTopics ) } method has been renamed to { nameof ( Clear ) } .", true ) ]
8181 public void ClearTopics ( string relationshipKey ) => Clear ( relationshipKey ) ;
8282
8383 /*==========================================================================================================================
@@ -149,12 +149,12 @@ internal bool Remove(string relationshipKey, Topic topic, bool isIncoming) {
149149
150150 /// <inheritdoc cref="Remove(String, Topic)"/>
151151 [ ExcludeFromCodeCoverage ]
152- [ Obsolete ( "The RemoveTopic() method has been renamed to Remove() ." , true ) ]
152+ [ Obsolete ( $ "The { nameof ( RemoveTopic ) } method has been renamed to { nameof ( Remove ) } .", true ) ]
153153 public bool RemoveTopic ( string relationshipKey , Topic topic ) => Remove ( relationshipKey , topic ) ;
154154
155155 /// <inheritdoc cref="Remove(String, Topic, Boolean)"/>
156156 [ ExcludeFromCodeCoverage ]
157- [ Obsolete ( "The RemoveTopic() method has been renamed to Remove() ." , true ) ]
157+ [ Obsolete ( $ "The { nameof ( RemoveTopic ) } method has been renamed to { nameof ( Remove ) } .", true ) ]
158158 public bool RemoveTopic ( string relationshipKey , Topic topic , bool isIncoming ) =>
159159 Remove ( relationshipKey , topic , isIncoming ) ;
160160
@@ -232,12 +232,12 @@ internal void SetValue(string relationshipKey, Topic topic, bool? markDirty, boo
232232
233233 /// <inheritdoc cref="SetValue(String, Topic, Boolean?)"/>
234234 [ ExcludeFromCodeCoverage ]
235- [ Obsolete ( "The SetTopic() method has been renamed to SetValue() ." , true ) ]
235+ [ Obsolete ( $ "The { nameof ( SetTopic ) } method has been renamed to { nameof ( SetValue ) } .", true ) ]
236236 public void SetTopic ( string relationshipKey , Topic topic , bool ? isDirty = null ) => SetValue ( relationshipKey , topic , isDirty ) ;
237237
238238 /// <inheritdoc cref="SetValue(String, Topic, Boolean?, Boolean)"/>
239239 [ ExcludeFromCodeCoverage ]
240- [ Obsolete ( "The SetTopic() method has been renamed to SetValue() ." , true ) ]
240+ [ Obsolete ( $ "The { nameof ( SetTopic ) } method has been renamed to { nameof ( SetValue ) } .", true ) ]
241241 public void SetTopic ( string relationshipKey , Topic topic , bool ? isDirty , bool isIncoming ) =>
242242 SetValue ( relationshipKey , topic , isDirty , isIncoming ) ;
243243
0 commit comments