Share via


IRemoteProxiedUserControlClient.RemotePropertyChangedAsync Method

Definition

This method is called when a property is updated on an object implementing INotifyPropertyChanged after it was first sent to Visual Studio.

public System.Threading.Tasks.Task RemotePropertyChangedAsync (Microsoft.VisualStudio.RpcContracts.RemoteUI.ObjectId id, string propertyName, Microsoft.VisualStudio.RpcContracts.RemoteUI.MessagePackFragment newValue, System.Threading.CancellationToken cancellationToken);
abstract member RemotePropertyChangedAsync : Microsoft.VisualStudio.RpcContracts.RemoteUI.ObjectId * string * Microsoft.VisualStudio.RpcContracts.RemoteUI.MessagePackFragment * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function RemotePropertyChangedAsync (id As ObjectId, propertyName As String, newValue As MessagePackFragment, cancellationToken As CancellationToken) As Task

Parameters

id
ObjectId

Identifier of the uniquely identifiable object that owns the property that was updated.

propertyName
String

Name of the property being updated.

newValue
MessagePackFragment

Value of the property after the update.

cancellationToken
CancellationToken

Cancellation token for the async call.

Returns

A Task tracking the completion of the async operation.

Applies to