Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Import XML Doc Comments for System.ComponentModel.EventBasedAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
dotnet-bot committed May 4, 2016
1 parent 345b453 commit 65b52dc
Show file tree
Hide file tree
Showing 2 changed files with 334 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@

namespace System.ComponentModel
{
/// <summary>
/// Executes an operation on a separate thread.
/// </summary>
public partial class BackgroundWorker : IDisposable
{
public void Dispose() { }
protected virtual void Dispose(bool disposing) { }
}

/// <summary>
/// Provides data for the <see cref="BackgroundWorker.DoWork" /> event
/// handler.
/// </summary>
public partial class DoWorkEventArgs : System.EventArgs
{
public bool Cancel { get { return false; } set { } }
Expand Down
Loading

0 comments on commit 65b52dc

Please sign in to comment.