1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System
{
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Runtime;
using System.Runtime.CompilerServices;
using System.ServiceModel.Channels;
using System.Net;
[TypeForwardedFrom("System.ServiceModel.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
public class UriTemplateMatch
{
Uri baseUri;
NameValueCollection boundVariables;
object data;
NameValueCollection queryParameters;
Collection<string> relativePathSegments;
Uri requestUri;
UriTemplate template;
Collection<string> wildcardPathSegments;
int wildcardSegmentsStartOffset = -1;
Uri originalBaseUri;
HttpRequestMessageProperty requestProp;
public UriTemplateMatch()
{
}
public Uri BaseUri // the base address, untouched
{
get
{
if (this.baseUri == null && this.originalBaseUri != null)
{
this.baseUri = UriTemplate.RewriteUri(this.originalBaseUri, this.requestProp.Headers[HttpRequestHeader.Host]);
}
return this.baseUri;
}
set
{
this.baseUri = value;
this.originalBaseUri = null;
this.requestProp = null;
}
}
public NameValueCollection BoundVariables // result of TryLookup, values are decoded
{
get
{
if (this.boundVariables == null)
{
this.boundVariables = new NameValueCollection();
}
return this.boundVariables;
}
}
public object Data
{
get
{
return this.data;
}
set
{
this.data = value;
}
}
public NameValueCollection QueryParameters // the result of UrlUtility.ParseQueryString (keys and values are decoded)
{
get
{
if (this.queryParameters == null)
{
PopulateQueryParameters();
}
return this.queryParameters;
}
}
public Collection<string> RelativePathSegments // entire Path (after the base address), decoded
{
get
{
if (this.relativePathSegments == null)
{
this.relativePathSegments = new Collection<string>();
}
return this.relativePathSegments;
}
}
public Uri RequestUri // uri on the wire, untouched
{
get
{
return this.requestUri;
}
set
{
this.requestUri = value;
}
}
public UriTemplate Template // which one got matched
{
get
{
return this.template;
}
set
{
this.template = value;
}
}
public Collection<string> WildcardPathSegments // just the Path part matched by "*", decoded
{
get
{
if (this.wildcardPathSegments == null)
{
PopulateWildcardSegments();
}
return this.wildcardPathSegments;
}
}
internal void SetQueryParameters(NameValueCollection queryParameters)
{
this.queryParameters = new NameValueCollection(queryParameters);
}
internal void SetRelativePathSegments(Collection<string> segments)
{
Fx.Assert(segments != null, "segments != null");
this.relativePathSegments = segments;
}
internal void SetWildcardPathSegmentsStart(int startOffset)
{
Fx.Assert(startOffset >= 0, "startOffset >= 0");
this.wildcardSegmentsStartOffset = startOffset;
}
internal void SetBaseUri(Uri originalBaseUri, HttpRequestMessageProperty requestProp)
{
this.baseUri = null;
this.originalBaseUri = originalBaseUri;
this.requestProp = requestProp;
}
void PopulateQueryParameters()
{
if (this.requestUri != null)
{
this.queryParameters = UriTemplateHelpers.ParseQueryString(this.requestUri.Query);
}
else
{
this.queryParameters = new NameValueCollection();
}
}
void PopulateWildcardSegments()
{
if (wildcardSegmentsStartOffset != -1)
{
this.wildcardPathSegments = new Collection<string>();
for (int i = this.wildcardSegmentsStartOffset; i < this.RelativePathSegments.Count; ++i)
{
this.wildcardPathSegments.Add(this.RelativePathSegments[i]);
}
}
else
{
this.wildcardPathSegments = new Collection<string>();
}
}
}
}
|