# TryGetLastBindingToUIResult(in BindingId, out BindingResult)

> Returns the last BindingResult of a binding object from the data source to the UI.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.UIElements](/engine/6000.7/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

## TryGetLastBindingToUIResult(BindingId, BindingResult)

```csharp
public bool TryGetLastBindingToUIResult(in BindingId bindingId, out BindingResult result)
```

### Parameters

**** (\[BindingId]\(/engine/6000.7/script-reference/unityengine/uielements/bindingid)): The ID of the binding object.**** (\[BindingResult]\(/engine/6000.7/script-reference/unityengine/uielements/bindingresult)): The result of the last binding operation to the UI.

### Returns

| Type                                                          | Description                                                       |
| ------------------------------------------------------------- | ----------------------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | `true` if the binding object has been updated; `false` otherwise. |
