Skip to content

Commit 4ab3a43

Browse files
Link to more specific DisposeAsync article (#4475)
* Link to more specific DisposeAsync article Replace unmanaged resources link with link to new more specific article about DisposeAsync method.
1 parent d6cf331 commit 4ab3a43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System/IAsyncDisposable.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You might implement `IAsyncDisposable` in the following situations:
4848
4949
- When your class owns unmanaged resources and releasing them requires a resource-intensive I/O operation, such as flushing the contents of an intermediate buffer into a file or sending a packet over a network to close a connection.
5050
51-
Use the <xref:System.IAsyncDisposable.DisposeAsync%2A> method to perform whatever cleanup is necessary after using the unmanaged resources, such as freeing, releasing, or resetting the unmanaged resources. For more information about unmanaged resources in .NET, see [Cleaning Up Unmanaged Resources](/dotnet/standard/garbage-collection/unmanaged).
51+
Use the <xref:System.IAsyncDisposable.DisposeAsync%2A> method to perform whatever cleanup is necessary after using the unmanaged resources, such as freeing, releasing, or resetting the unmanaged resources. For more information, see [Implement a DisposeAsync method](/dotnet/standard/garbage-collection/implementing-disposeasync).
5252
5353
]]></format>
5454
</remarks>

0 commit comments

Comments
 (0)