ProjectTaskElement.Parameters Property
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.
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().