UriTemplateTable Class
A class that represents an associative set of UriTemplate objects.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | UriTemplateTable() | Initializes a new instance of the UriTemplateTable class. |
![]() | UriTemplateTable(IEnumerable<KeyValuePair<UriTemplate^, Object^>>^) | Initializes a new instance of the UriTemplateTable class with the specified collection of key/value pairs. |
![]() | UriTemplateTable(Uri^) | Initializes a new instance of the UriTemplateTable class with the specified base address. |
![]() | UriTemplateTable(Uri^, IEnumerable<KeyValuePair<UriTemplate^, Object^>>^) | Initializes a new instance of the UriTemplateTable class with the specified base address and collection of key/value pairs. |
| Name | Description | |
|---|---|---|
![]() | BaseAddress | Gets and sets the base address for the UriTemplateTable instance. |
![]() | IsReadOnly | Gets a value that specifies whether the UriTemplateTable is read only. |
![]() | KeyValuePairs | Gets a collection of key/value pairs that consist of UriTemplate objects and their associated data. |
![]() | OriginalBaseAddress | Gets the original base address. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MakeReadOnly(Boolean) | Makes the UriTemplateTable read only. |
![]() | Match(Uri^) | Attempts to match a candidate Uri to the UriTemplateTable. |
![]() | MatchSingle(Uri^) | Attempts to match a candidate Uri to the UriTemplateTable. |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
A UriTemplateTable is an associative set of UriTemplate objects bound to an object of the developer's choosing. It allows you to match candidate Uniform Resource Identifiers (URIs) against the templates in the set and retrieve the data associated with the matching templates. The contents of UriTemplateTable can be changed until the MakeReadOnly(Boolean) method is called, at which time one of following types of validation occurs:
When MakeReadOnly(Boolean) is called passing in false, the UriTemplateTable checks to make sure the table contains no multiple structurally-equivalent templates. If it finds such templates, it throws an exception. This type of validation is used in conjunction with MatchSingle(Uri^) when you want to ensure only one template matches an incoming URI.
When MakeReadOnly(Boolean) is called passing in true, multiple structurally-equivalent templates can be contained within a UriTemplateTable. However, any query strings in the templates must not be ambiguous; identical query strings are allowed. For more information about ambiguous query strings, see UriTemplate and UriTemplateTable.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


