Dispatcher.VerifyAccess Yöntem

Tanım

Çağıran iş parçacığının bu Dispatcheröğesine erişimi olup olmadığını belirler.

public:
 void VerifyAccess();
public void VerifyAccess ();
member this.VerifyAccess : unit -> unit
Public Sub VerifyAccess ()

Özel durumlar

Çağıran iş parçacığının bu Dispatcheröğesine erişimi yok.

Örnekler

Aşağıdaki örnek, bir iş parçacığının oluşturulduğu iş parçacığına Button erişimi olup olmadığını belirlemek için kullanırVerifyAccess. yöntemi bir nesnesini bağımsız değişken olarak alır ve bu da öğesine Buttonatılır. VerifyAccess üzerindeki yöntemi Dispatcher Button, iş parçacığına erişimi doğrulamak için çağrılır.

Çağıran iş parçacığının Dispatcheröğesine erişimi varsa, Button yalnızca üyelerine Buttonerişilerek güncelleştirilir.

Çağıran iş parçacığının erişimi yoksa, bir InvalidOperationException oluşturulur. Bu örnek özel durumu yakalar ve bağımsız değişken olarak kabul eden bir Button temsilciyi Dispatcher öğesine iletir Button. Bu Dispatcher , güncelleştirme Buttonişini yapar.

// 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

Açıklamalar

Yalnızca üzerinde oluşturulan iş parçacığına Dispatcher erişebilir Dispatcher.

Bu yöntem geneldir; bu nedenle, herhangi bir iş parçacığı erişimi olup olmadığını Dispatcherkontrol edebilir.

ile arasındaki CheckAccess VerifyAccess fark, CheckAccess çağıran iş parçacığının öğesine erişimi Dispatcher yoksa ve VerifyAccess bir özel durum oluşturursa bir Boole döndürür.

Şunlara uygulanır

Ayrıca bkz.