Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 UriTemplate Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
WebGetAttribute..::.UriTemplate Property

Gets and sets the Uniform Resource Identifier (URI) template for the service operation.

Namespace:  System.ServiceModel.Web
Assembly:  System.ServiceModel.Web (in System.ServiceModel.Web.dll)
Visual Basic (Declaration)
Public Property UriTemplate As String
Visual Basic (Usage)
Dim instance As WebGetAttribute
Dim value As String

value = instance.UriTemplate

instance.UriTemplate = value
C#
public string UriTemplate { get; set; }
Visual C++
public:
property String^ UriTemplate {
    String^ get ();
    void set (String^ value);
}
JScript
public function get UriTemplate () : String
public function set UriTemplate (value : String)

Property Value

Type: System..::.String
The URI template for the service operation.

URI templates are used to determine which requests get dispatched to which service operations. URI templates allow you to map a URI or a set of URIs to a service operation. For more information about URI templates, see UriTemplate and UriTemplateTable.

The following example shows how to set the UriTemplate property.

Visual Basic
<OperationContract()> _
<WebGet(UriTemplate:="Sub?x={x}&y={y}")> _
Function Subtract(ByVal x As Long, ByVal y As Long) As Long
C#
[OperationContract]
[WebGet(UriTemplate = "Sub?x={x}&y={y}")]
long Subtract(long x, long y);

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker