ProjectInstance.GetMetadataValueEscaped Method

Definition

Gets the escaped value of the metadatum with the provided name of the provided item definition.

Overloads

GetMetadataValueEscaped(ProjectMetadataInstance)

Gets the escaped value of the provided metadatum.

GetMetadataValueEscaped(ProjectItemDefinitionInstance, String)

Gets the escaped value of the metadatum with the provided name on the provided item definition.

GetMetadataValueEscaped(ProjectItemInstance, String)

Gets the escaped value of the metadatum with the provided name on the provided item.

GetMetadataValueEscaped(ProjectMetadataInstance)

Gets the escaped value of the provided metadatum.

public:
 static System::String ^ GetMetadataValueEscaped(Microsoft::Build::Execution::ProjectMetadataInstance ^ metadatum);
public static string GetMetadataValueEscaped (Microsoft.Build.Execution.ProjectMetadataInstance metadatum);
static member GetMetadataValueEscaped : Microsoft.Build.Execution.ProjectMetadataInstance -> string
Public Shared Function GetMetadataValueEscaped (metadatum As ProjectMetadataInstance) As String

Parameters

metadatum
ProjectMetadataInstance

The metadatum to be escaped.

Returns

The escaped value of the provided metadatum.

Applies to

GetMetadataValueEscaped(ProjectItemDefinitionInstance, String)

Gets the escaped value of the metadatum with the provided name on the provided item definition.

public:
 static System::String ^ GetMetadataValueEscaped(Microsoft::Build::Execution::ProjectItemDefinitionInstance ^ item, System::String ^ name);
public static string GetMetadataValueEscaped (Microsoft.Build.Execution.ProjectItemDefinitionInstance item, string name);
static member GetMetadataValueEscaped : Microsoft.Build.Execution.ProjectItemDefinitionInstance * string -> string
Public Shared Function GetMetadataValueEscaped (item As ProjectItemDefinitionInstance, name As String) As String

Parameters

item
ProjectItemDefinitionInstance

The item definition to provide the metadatum value.

name
String

The name of the metadatum.

Returns

The escaped value of the metadatum with the provided name of the provided item definition.

Applies to

GetMetadataValueEscaped(ProjectItemInstance, String)

Gets the escaped value of the metadatum with the provided name on the provided item.

public:
 static System::String ^ GetMetadataValueEscaped(Microsoft::Build::Execution::ProjectItemInstance ^ item, System::String ^ name);
public static string GetMetadataValueEscaped (Microsoft.Build.Execution.ProjectItemInstance item, string name);
static member GetMetadataValueEscaped : Microsoft.Build.Execution.ProjectItemInstance * string -> string
Public Shared Function GetMetadataValueEscaped (item As ProjectItemInstance, name As String) As String

Parameters

item
ProjectItemInstance

The item to provide the metadatum value.

name
String

The name of the metadatum.

Returns

The escaped value of the metadatum with the provided name on the provided item.

Applies to