Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UriTemplate Constructor (String^, Boolean)

 

Initializes a new instance of the UriTemplate class.

Namespace:   System
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
UriTemplate(
	String^ template,
	bool ignoreTrailingSlash
)

Parameters

template
Type: System::String^

The template string.

ignoreTrailingSlash
Type: System::Boolean

A value that specifies whether trailing slash “/” characters should be ignored.

When the ignoreTrailingSlash is set to true, trailing slashes on the end of template are ignored when matching a candidate URI. For example, a template such as “http://www.microsoft.com/customer/” would match the following candidate URIs:

  • "http://www.microsoft.com/customer/"

  • "http://www.microsoft.com/customer"

  • "http://www.microsoft.com/customer/?wsdl"

  • "http://www.microsoft.com/customer?wsdl"

.NET Framework
Available since 3.5
Silverlight
Available since 4.0
Return to top
Show:
© 2017 Microsoft