JoinableTaskCollection.Remove(JoinableTask) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes the specified JoinableTask from this collection, or decrements the ref count if this collection tracks that.
public:
void Remove(Microsoft::VisualStudio::Threading::JoinableTask ^ joinableTask);
public:
void Remove(Microsoft::VisualStudio::Threading::JoinableTask ^ joinableTask);
void Remove(Microsoft::VisualStudio::Threading::JoinableTask const & joinableTask);
public void Remove (Microsoft.VisualStudio.Threading.JoinableTask joinableTask);
member this.Remove : Microsoft.VisualStudio.Threading.JoinableTask -> unit
Public Sub Remove (joinableTask As JoinableTask)
Parameters
- joinableTask
- JoinableTask
The JoinableTask to remove.
Remarks
Completed JoinableTask instances are automatically removed from the collection. Calling this method to remove them is not necessary.