Delen via


UrlRewriteActionParameters Constructors

Definition

Overloads

UrlRewriteActionParameters()

Initializes a new instance of the UrlRewriteActionParameters class.

UrlRewriteActionParameters(String, String, Nullable<Boolean>)

Initializes a new instance of the UrlRewriteActionParameters class.

UrlRewriteActionParameters()

Initializes a new instance of the UrlRewriteActionParameters class.

public UrlRewriteActionParameters ();
Public Sub New ()

Applies to

UrlRewriteActionParameters(String, String, Nullable<Boolean>)

Initializes a new instance of the UrlRewriteActionParameters class.

public UrlRewriteActionParameters (string sourcePattern, string destination, bool? preserveUnmatchedPath = default);
new Microsoft.Azure.Management.Cdn.Models.UrlRewriteActionParameters : string * string * Nullable<bool> -> Microsoft.Azure.Management.Cdn.Models.UrlRewriteActionParameters
Public Sub New (sourcePattern As String, destination As String, Optional preserveUnmatchedPath As Nullable(Of Boolean) = Nothing)

Parameters

sourcePattern
String

define a request URI pattern that identifies the type of requests that may be rewritten. If value is blank, all strings are matched.

destination
String

Define the relative URL to which the above requests will be rewritten by.

preserveUnmatchedPath
Nullable<Boolean>

Whether to preserve unmatched path. Default value is true.

Applies to