Dispatcher.VerifyAccess Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina se o thread de chamada tem acesso a este Dispatcher.
public:
void VerifyAccess();
public void VerifyAccess ();
member this.VerifyAccess : unit -> unit
Public Sub VerifyAccess ()
Exceções
O thread de chamada não tem acesso a este Dispatcher.
Exemplos
O exemplo a seguir usa VerifyAccess para determinar se um thread tem acesso ao thread no qual um Button foi criado. O método usa um objeto como um argumento, que é convertido em um Button. O VerifyAccess método no Dispatcher da Button é chamado para verificar o acesso ao thread.
Se o thread de chamada tiver acesso ao Dispatcher, ele Button será atualizado apenas acessando os membros do Button.
Se o thread de chamada não tiver acesso, um InvalidOperationException será gerado. Este exemplo captura a exceção e envia por push um delegado, que aceita um Button como argumento, para o Dispatcher .Button Isso Dispatcher fará o trabalho de atualizar o 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
Comentários
Somente o thread no qual ele Dispatcher é criado pode acessar o Dispatcher.
Esse método é público; portanto, qualquer thread pode verificar se ele tem acesso ao Dispatcher.
A diferença entre CheckAccess e VerifyAccess é CheckAccess retorna um booliano se o thread de chamada não tiver acesso ao Dispatcher e VerifyAccess gerar uma exceção.