21 references to Query
PresentationFramework (1)
src\Framework\System\Windows\Navigation\JournalEntry.cs (1)
383string relativeUri = uri.AbsolutePath + uri.Query + uri.Fragment;
System (6)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
130if (ctx.Uri.Query.Length != 0) {
net\System\Net\HttpListenerRequest.cs (1)
517Helpers.FillFromString(queryString, Url.Query, true, ContentEncoding);
net\System\Net\webclient.cs (2)
997if ((uri.Query == null || uri.Query == string.Empty) && m_requestParameters != null) {
net\System\uribuilder.cs (2)
70m_query = uri.Query; 380m_query = uri.Query;
System.Data.Services (2)
System\Data\Services\BatchServiceHost.cs (1)
382this.queryParameters = HttpUtility.ParseQueryString(this.absoluteRequestUri.Query);
System\Data\Services\HttpContextServiceHost.cs (1)
326if (!String.IsNullOrEmpty(this.absoluteServiceUri.Query))
System.Data.Services.Client (2)
System\Data\Services\Client\DataServiceContext.cs (1)
164!String.IsNullOrEmpty(serviceRoot.Query) ||
System\Data\Services\Client\Util.cs (1)
278Debug.Assert(String.IsNullOrEmpty(baseUri.Query) && String.IsNullOrEmpty(baseUri.Fragment), "baseUri has query or fragment");
System.Data.SqlXml (1)
System\Xml\Xsl\Runtime\XmlCollation.cs (1)
186string query = collationUri.Query;
System.ServiceModel (7)
System\ServiceModel\Channels\HttpRequestContext.cs (2)
964if (this.listenerHttpContext.listenerContext.Request.Url.Query.Length > 1) 966requestProperty.QueryString = this.listenerHttpContext.listenerContext.Request.Url.Query.Substring(1);
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
1009string queryString = httpGetRequest.Properties.Via.Query;
System\ServiceModel\UriSchemeKeyedCollection.cs (1)
71if (!string.IsNullOrEmpty(uri.Query))
System\UriTemplate.cs (1)
491candidateQuery = UriTemplateHelpers.ParseQueryString(candidate.Query);
System\UriTemplateMatch.cs (1)
154this.queryParameters = UriTemplateHelpers.ParseQueryString(this.requestUri.Query);
System\UriTemplateTable.cs (1)
180queryParameters = UriTemplateHelpers.ParseQueryString(uri.Query);
System.ServiceModel.Activation (2)
System\ServiceModel\Activation\HostedHttpContext.cs (2)
309if (this.hostedHttpContext.result.RequestUri.Query.Length > 1) 311requestProperty.QueryString = this.hostedHttpContext.result.RequestUri.Query.Substring(1);