Skip to content

Commit 98b6398

Browse files
Update Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs
Co-authored-by: Alexey Kulakov <alexey.kulakov@dataobjects.net>
1 parent 30423e2 commit 98b6398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm/Orm/Model/TypeInfoCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public IEnumerable<TypeInfo> FindDescendants(TypeInfo item, bool recursive) =>
216216
/// <param name="recursive">if set to <see langword="true"/> then both direct and non-direct implemented interfaces will be returned.</param>
217217
/// <returns><see cref="IEnumerable{T}"/> of <see cref="TypeInfo"/> instance that are implemented by specified <paramref name="item"/>.</returns>
218218
/// <exception cref="ArgumentNullException">When <paramref name="item"/> is <see langword="null"/>.</exception>
219-
[Obsolete("Use TypeInfo.Interfaces/.RecursiveInterfaces")]
219+
[Obsolete("Use TypeInfo.DirectInterfaces/.AllInterfaces ")]
220220
public IEnumerable<TypeInfo> FindInterfaces(TypeInfo item, bool recursive) =>
221221
recursive ? item.AllInterfaces : item.DirectInterfaces;
222222

0 commit comments

Comments
 (0)