Share via


DeploymentSyncParameterEntry.Match Property

Definition

Gets a string used to determine if the entry matches the criteria of the provider.

public:
 property System::String ^ Match { System::String ^ get(); };
public string Match { get; }
member this.Match : string
Public ReadOnly Property Match As String

Property Value

A string that contains match criteria.

Remarks

If this entry is an <xref:Microsoft.Web.Deployment.DeploymentSyncParameterEntryType.XmlFile> or <xref:Microsoft.Web.Deployment.DeploymentAttribute>, this value should be an XPath expression. If this entry is a <xref:Microsoft.Web.Deployment.DeploymentSyncParameterEntryType.TextFile>, this value should be a regular expression. If this entry represents a <xref:Microsoft.Web.Deployment.DeploymentSyncParameterEntryType.TextFilePosition>, this entry should be a positional parameter string matching the following specification.

line;col;countToReplace

All values must be text values that can be parsed as integers. Values may contain white space around the values. The following represents a valid positional parameter match value: "10;10;1".

Applies to