From 4b0d3d26ccff72779592d07451f32098c2890dd1 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Fri, 31 Aug 2007 21:24:40 +0000 Subject: [PATCH] Some lesser XML documentation improvements git-svn-id: file:///srv/devel/repo-conversion/nusu@44 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Scheduling/ThreadCallbackOperation.cs | 7 +++++-- Source/Scheduling/ThreadOperation.cs | 8 ++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Source/Scheduling/ThreadCallbackOperation.cs b/Source/Scheduling/ThreadCallbackOperation.cs index 400b899..e6fdaa2 100644 --- a/Source/Scheduling/ThreadCallbackOperation.cs +++ b/Source/Scheduling/ThreadCallbackOperation.cs @@ -28,7 +28,8 @@ namespace Nuclex.Support.Scheduling { public class ThreadCallbackOperation : ThreadOperation { /// - /// Initializes a new threaded method operation for a parameterless method + /// Initializes a new threaded method operation that will call back a + /// parameterless method from the background thread. /// /// Method to be invoked in a background thread /// @@ -38,7 +39,9 @@ namespace Nuclex.Support.Scheduling { : this(method, true) { } /// - /// Initializes a new threaded method operation for a parameterless method + /// Initializes a new threaded method operation that will call back a + /// parameterless method from the background thread and use the + /// thread pool optionally. /// /// Method to be invoked in a background thread /// Whether to use a ThreadPool thread diff --git a/Source/Scheduling/ThreadOperation.cs b/Source/Scheduling/ThreadOperation.cs index 5ec6f12..ef1b15c 100644 --- a/Source/Scheduling/ThreadOperation.cs +++ b/Source/Scheduling/ThreadOperation.cs @@ -28,17 +28,17 @@ namespace Nuclex.Support.Scheduling { public abstract class ThreadOperation : Operation { /// - /// Initializes a new threaded operation + /// Initializes a new threaded operation. /// /// - /// Uses a ThreadPool thread to execute the method in + /// Uses a ThreadPool thread to execute the method in a background thread. /// public ThreadOperation() : this(true) { } /// - /// Initializes a new threaded operation + /// Initializes a new threaded operation which optionally uses the ThreadPool. /// - /// Whether tos use a ThreadPool thread + /// Whether to use a ThreadPool thread. /// /// If useThreadPool is false, a new thread will be created. This guarantees /// that the method will be executed immediately but has an impact on