[This is preliminary documentation and is subject to change.]

Gets value indicating if hook events occur on different thread than hook was registered.

Namespace: Tools.API.Hooks
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public bool IsAsync { get; }
Visual Basic
Public ReadOnly Property IsAsync As Boolean
	Get
Visual C++
public:
property bool IsAsync {
	bool get ();
}
F#
member IsAsync : bool
JScript
function get IsAsync () : boolean

Return Value

True when HookProc(Int32, IntPtr, IntPtr) is called on different thread that hook was registered.

Remarks

Has no meaning when Registered is false

See Also