Skip to content

Commit ae64602

Browse files
Merge pull request #10820 from changeworld/patch-4
Fix typo: biding -> binding
2 parents 721467e + e3b9bc7 commit ae64602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/extensibility/visualstudio.extensibility/inside-the-sdk/advanced-remote-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ With the code above, the `Color` property value is converted to a `LinearGradien
365365

366366
## Remote UI and threads
367367

368-
*Async command* callbacks (and `INotifyPropertyChanged` callbacks for values updated by the UI through data biding) are raised on random thread pool threads. Callbacks are raised one at a time and won't overlap until the code yields control (using an `await` expression).
368+
*Async command* callbacks (and `INotifyPropertyChanged` callbacks for values updated by the UI through data binding) are raised on random thread pool threads. Callbacks are raised one at a time and won't overlap until the code yields control (using an `await` expression).
369369

370370
This behavior can be changed by passing a [NonConcurrentSynchronizationContext](/dotnet/api/microsoft.visualstudio.threading.nonconcurrentsynchronizationcontext) to the [`RemoteUserControl`](/dotnet/api/microsoft.visualstudio.extensibility.ui.remoteusercontrol) constructor. In that case, you can use the provided synchronization context for all *async command* and `INotifyPropertyChanged` callbacks related to that control.
371371

0 commit comments

Comments
 (0)