UpdateExtensions.SetLaunchProfilePropertyValue Method

Definition

Sets the value of a property exposed through the launch profiles.

public static Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ILaunchProfileSnapshot> SetLaunchProfilePropertyValue (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ILaunchProfileSnapshot> profiles, string propertyName, object? value);
static member SetLaunchProfilePropertyValue : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ILaunchProfileSnapshot> * string * obj -> Microsoft.VisualStudio.ProjectSystem.Query.IAsyncUpdatable<Microsoft.VisualStudio.ProjectSystem.Query.ILaunchProfileSnapshot>
<Extension()>
Public Function SetLaunchProfilePropertyValue (profiles As IAsyncUpdatable(Of ILaunchProfileSnapshot), propertyName As String, value As Object) As IAsyncUpdatable(Of ILaunchProfileSnapshot)

Parameters

profiles
IAsyncUpdatable<ILaunchProfileSnapshot>

A set of profiles to be updated with the new value.

propertyName
String

The name of the property to update.

value
Object

The new value for the property. May be null to indicate that the property should be reset to a default value.

Returns

Applies to