ProjectInstance.GetMetadataValueEscaped 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.
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)
- Source:
- ProjectInstance.cs
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)
- Source:
- ProjectInstance.cs
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
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)
- Source:
- ProjectInstance.cs
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.