DataAsyncCommand.Cancel Method (Boolean)
Cancels the asynchronous call, returning either immediately (asynchronously) or after waiting for the call to be fully cancelled (synchronously).
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public MustOverride Sub Cancel ( _
waitForEnd As Boolean _
)
public abstract void Cancel(
bool waitForEnd
)
public:
virtual void Cancel(
bool waitForEnd
) abstract
abstract Cancel :
waitForEnd:bool -> unit
public abstract function Cancel(
waitForEnd : boolean
)
Parameters
waitForEnd
Type: System.BooleanBoolean flag indicating whether or not to wait for the call to be fully cancelled before returning.
Remarks
The waitForEnd parameter indicates whether the call to the Cancel method should be asynchronous (waitForEnd = false), or synchronous (waitForEnd = true).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.