Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 65b52dc

Browse files
committed
Import XML Doc Comments for System.ComponentModel.EventBasedAsync
1 parent 345b453 commit 65b52dc

File tree

2 files changed

+334
-1
lines changed

2 files changed

+334
-1
lines changed

src/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.Manual.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@
77

88
namespace System.ComponentModel
99
{
10+
/// <summary>
11+
/// Executes an operation on a separate thread.
12+
/// </summary>
1013
public partial class BackgroundWorker : IDisposable
1114
{
1215
public void Dispose() { }
1316
protected virtual void Dispose(bool disposing) { }
1417
}
15-
18+
/// <summary>
19+
/// Provides data for the <see cref="BackgroundWorker.DoWork" /> event
20+
/// handler.
21+
/// </summary>
1622
public partial class DoWorkEventArgs : System.EventArgs
1723
{
1824
public bool Cancel { get { return false; } set { } }

0 commit comments

Comments
 (0)