Dispatcher.CheckAccess Метод

Определение

Определяет, связан ли вызывающий поток с данным Dispatcher.

public:
 bool CheckAccess();
public bool CheckAccess ();
member this.CheckAccess : unit -> bool
Public Function CheckAccess () As Boolean

Возвращаемое значение

Значение true, если вызывающий поток связан с данным Dispatcher; в противном случае — значение false.

Примеры

В следующем примере используется для CheckAccess определения того, имеет ли поток доступ к Button. Метод CheckAccess в объекте , связанном ButtonDispatcher с , вызывается для проверки доступа к потоку. Если вызывающий поток имеет доступ к Dispatcher, обновляется путем доступа к членам ; в Buttonпротивном случае делегат, который принимает Button в качестве аргумента, помещается в DispatcherButton . будет Dispatcher делегировать работу по обновлению Button.

// Uses the Dispatcher.CheckAccess method to determine if 
// the calling thread has access to the thread the UI object is on.
private void TryToUpdateButtonCheckAccess(object uiObject)
{
    Button theButton = uiObject as Button;

    if (theButton != null)
    {
        // Checking if this thread has access to the object.
        if (theButton.Dispatcher.CheckAccess())
        {
            // This thread has access so it can update the UI thread.
            UpdateButtonUI(theButton);
        }
        else
        {
            // This thread does not have access to the UI thread.
            // Place the update method on the Dispatcher of the UI thread.
            theButton.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
                new UpdateUIDelegate(UpdateButtonUI), theButton);
        }
    }
}
' Uses the Dispatcher.CheckAccess method to determine if 
' the calling thread has access to the thread the UI object is on.
Private Sub TryToUpdateButtonCheckAccess(ByVal uiObject As Object)
    Dim theButton As Button = TryCast(uiObject, Button)

    If theButton IsNot Nothing Then
        ' Checking if this thread has access to the object.
        If theButton.Dispatcher.CheckAccess() Then
            ' This thread has access so it can update the UI thread.
            UpdateButtonUI(theButton)
        Else
            ' This thread does not have access to the UI thread.
            ' Place the update method on the Dispatcher of the UI thread.
            theButton.Dispatcher.BeginInvoke(DispatcherPriority.Normal, New UpdateUIDelegate(AddressOf UpdateButtonUI), theButton)
        End If
    End If
End Sub

Комментарии

Dispatcher Доступ к объекту DispatcherObject может получить только объект , на который создан объект . Используйте Invoke или BeginInvoke для доступа к объекту из другого потока.

CheckAccess может вызываться из любого потока.

Разница между CheckAccess и VerifyAccessCheckAccess возвращает логическое значение, указывающее, имеет ли вызывающий поток доступ к Dispatcher и VerifyAccess вызывает исключение.

Применяется к

См. также раздел