IRemoteProxiedUserControlClient.RemotePropertyChangedAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.