Gets or sets a value indicating whether the select command was cancelled.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public bool WasCommandCancelled { get; internal set; }
Visual Basic
Public Property WasCommandCancelled As Boolean
	Get
	Friend Set
Visual C++
public:
property bool WasCommandCancelled {
	bool get ();
	internal: void set (bool value);
}

Field Value

true if the select command was cancelled; otherwise, false.

Remarks

This property will only be true if the command was cancelled at a meaningful point in the select operation. In other words, if a cancellation has no impact on the returned results this property will be false.

See Also