DispatcherObject::VerifyAccess Method
Enforces that the calling thread has access to this DispatcherObject.
Assembly: WindowsBase (in WindowsBase.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | the calling thread does not have access to this DispatcherObject. |
Only the thread the Dispatcher was created on may access the DispatcherObject.
Any thread can check to see whether it has access to this DispatcherObject.
The difference between CheckAccess and VerifyAccess is that CheckAccess returns a Boolean that specifies whether the calling thread has access to this DispatcherObject and VerifyAccess throws an exception if the calling thread does not have access to the this DispatcherObject.
The following example uses VerifyAccess to determine whether a thread has access to the thread that a Button was created on. If the calling thread does not have access, an InvalidOperationException is thrown.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.