Dispatcher.VerifyAccess Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Определяет, имеет ли вызывающий поток доступ к этому Dispatcher.
public:
void VerifyAccess();
public void VerifyAccess ();
member this.VerifyAccess : unit -> unit
Public Sub VerifyAccess ()
Исключения
Вызывающий поток не имеет доступа к этому Dispatcher.
Примеры
В следующем примере определяется VerifyAccess , имеет ли поток доступ к созданному потоку Button . Метод принимает объект в качестве аргумента, который приводится к Button. Вызывается VerifyAccess метод для Dispatcher Button проверки доступа к потоку.
Если вызывающий поток имеет доступ к Dispatcherобъекту, Button он обновляется путем простого доступа к членам объекта Button.
Если вызывающий поток не имеет доступа, создается исключение InvalidOperationException . В этом примере перехватывается исключение и отправляется делегат, который принимает в Button качестве аргументаButton.Dispatcher Это Dispatcher приведет к обновлению Button.
// Uses the Dispatcher.VerifyAccess method to determine if
// the calling thread has access to the thread the UI object is on.
private void TryToUpdateButtonVerifyAccess(object uiObject)
{
Button theButton = uiObject as Button;
if (theButton != null)
{
try
{
// Check if this thread has access to this object.
theButton.Dispatcher.VerifyAccess();
// The thread has access to the object, so update the UI.
UpdateButtonUI(theButton);
}
// Cannot access objects on the thread.
catch (InvalidOperationException e)
{
// Exception Error Message.
MessageBox.Show("Exception ToString: \n\n" + e.ToString(),
"Execption Caught! Thrown During AccessVerify().");
MessageBox.Show("Pushing job onto UI Thread Dispatcher");
// Placing job onto the Dispatcher of the UI Thread.
theButton.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
new UpdateUIDelegate(UpdateButtonUI), theButton);
}
}
}
' Uses the Dispatcher.VerifyAccess method to determine if
' the calling thread has access to the thread the UI object is on.
Private Sub TryToUpdateButtonVerifyAccess(ByVal uiObject As Object)
Dim theButton As Button = TryCast(uiObject, Button)
If theButton IsNot Nothing Then
Try
' Check if this thread has access to this object.
theButton.Dispatcher.VerifyAccess()
' The thread has access to the object, so update the UI.
UpdateButtonUI(theButton)
' Cannot access objects on the thread.
Catch e As InvalidOperationException
' Exception Error Message.
MessageBox.Show("Exception ToString: " & vbLf & vbLf & e.ToString(), "Execption Caught! Thrown During AccessVerify().")
MessageBox.Show("Pushing job onto UI Thread Dispatcher")
' Placing job onto the Dispatcher of the UI Thread.
theButton.Dispatcher.BeginInvoke(DispatcherPriority.Normal, New UpdateUIDelegate(AddressOf UpdateButtonUI), theButton)
End Try
End If
End Sub
Комментарии
Доступ к файлу может получить только поток Dispatcher , созданный в этом объекте Dispatcher.
Этот метод является открытым; таким образом, любой поток может проверить, имеет ли он доступ к Dispatcher.
Разница между CheckAccess и VerifyAccess возвращает CheckAccess логическое значение, если вызывающий поток не имеет доступа к Dispatcher и VerifyAccess вызывает исключение.