ProjectTaskElement.Parameters Property

Definition

Enumerable over the unevaluated parameters on the task. Attributes with their own properties, such as ContinueOnError, are not included in this collection. If parameters differ only by case only the last one will be returned. MSBuild uses only this one. Hosts can still remove the other parameters by using RemoveAllParameters().

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ Parameters { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,string> Parameters { get; }
member this.Parameters : System.Collections.Generic.IDictionary<string, string>
Public ReadOnly Property Parameters As IDictionary(Of String, String)

Property Value

All unevaluated parameters of this task.

Remarks

Condition and ContinueOnError attributes are not included in this collection. If parameters differ only by case then only the last one will be returned. See also RemoveAllParameters().

Applies to