• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.HttpExtensions
    • AuthorizationExtensions
    • HttpBehaviour
    • HttpBehaviourExtensions
    • HttpClientExtensions
    • HttpContentExtensions
    • HttpExtensionsGlobals
    • HttpRequestMessageConfiguration
    • HttpRequestMessageExtensions
    • HttpResponse
    • HttpResponse<TResponse, TErrorResponse>
    • HttpResponse<TResponse>
    • HttpResponseMessageExtensions
    • HttpResponseWithError<TErrorResponse>
    • IChangeableHttpBehaviour
    • IHttpBehaviour
    • IHttpContentConverter
    • IHttpRequestConfiguration
    • IHttpSettings
    • IJsonSerializer
    • MiscExtensions
    • UriActionExtensions
    • UriModifyExtensions
    • UriParseExtensions
  • Dapplo.HttpExtensions.ContentConverter
    • ByteArrayHttpContentConverter
    • DefaultJsonHttpContentConverter
    • DefaultJsonHttpContentConverterConfiguration
    • FormUriEncodedContentConverter
    • StreamHttpContentConverter
    • StringConfiguration
    • StringHttpContentConverter
    • SyndicationFeedHttpContentConverter
    • XDocumentHttpContentConverter
  • Dapplo.HttpExtensions.Extensions
    • EnumExtensions
    • HttpBehaviourExtensions
    • StringExtensions
    • TypeExtensions
  • Dapplo.HttpExtensions.Factory
    • HttpClientFactory
    • HttpContentFactory
    • HttpMessageHandlerFactory
    • HttpRequestMessageFactory
    • WebProxyFactory
  • Dapplo.HttpExtensions.JsonNet
    • JsonNetJsonSerializer
    • ReadOnlyConsideringContractResolver
  • Dapplo.HttpExtensions.JsonSimple
    • DataContractJsonSerializerStrategy
    • DefaultJsonHttpContentConverter
    • IJsonSerializerStrategy
    • JsonExtensionDataAttribute
    • PocoJsonSerializerStrategy
    • SimpleJson
    • SimpleJsonSerializer
  • Dapplo.HttpExtensions.Listener
    • HttpListenerContextExtensions
    • ListenerPortExtensions
    • UriHttpListenerExtensions
  • Dapplo.HttpExtensions.OAuth
    • AuthorizeModes
    • BaseOAuthSettings
    • GrantTypes
    • ICodeReceiverSettings
    • IOAuth1Token
    • IOAuth2Token
    • IOAuthCodeReceiver
    • OAuth1HttpBehaviour
    • OAuth1HttpBehaviourFactory
    • OAuth1HttpMessageHandler
    • OAuth1Parameters
    • OAuth1RequestConfiguration
    • OAuth1Settings
    • OAuth1SignatureTransports
    • OAuth1SignatureTypes
    • OAuth1Token
    • OAuth2HttpBehaviourFactory
    • OAuth2HttpMessageHandler
    • OAuth2Settings
    • OAuth2TokenResponse
    • OAuthExtensions
  • Dapplo.HttpExtensions.OAuth.CodeReceivers
    • EmbeddedBrowserCodeReceiver
  • Dapplo.HttpExtensions.OAuth.Desktop
    • OAuthLoginForm
  • Dapplo.HttpExtensions.Support
    • HttpPartAttribute
    • HttpParts
    • HttpRequestAttribute
    • HttpResponseAttribute
    • HttpSettings
    • MediaTypes
    • ProgressStream
    • ProgressStreamReport
  • Dapplo.HttpExtensions.SystemTextJson
    • SystemTextJsonSerializer
  • Dapplo.HttpExtensions.WinForms.ContentConverter
    • BitmapConfiguration
    • BitmapHttpContentConverter
  • Dapplo.HttpExtensions.Wpf.ContentConverter
    • BitmapSourceConfiguration
    • BitmapSourceHttpContentConverter

Class UriParseExtensions

Uri extensions which help with parsing

Inheritance
System.Object
UriParseExtensions
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dapplo.HttpExtensions
Assembly: Dapplo.HttpExtensions.dll
Syntax
public static class UriParseExtensions

Methods

| Improve this Doc View Source

QueryStringToDictionary(String)

Query-string To Dictionary creates a IDictionary

Declaration
public static IDictionary<string, string> QueryStringToDictionary(string queryString)
Parameters
Type Name Description
System.String queryString

query string which is processed

Returns
Type Description
IDictionary<System.String, System.String>

IDictionary string, string

| Improve this Doc View Source

QueryStringToKeyValuePairs(String)

Query-string To KeyValuePairs creates a List with KeyValuePair which have the name-values

Declaration
public static IEnumerable<KeyValuePair<string, string>> QueryStringToKeyValuePairs(string queryString)
Parameters
Type Name Description
System.String queryString

query string which is processed

Returns
Type Description
IEnumerable<KeyValuePair<System.String, System.String>>

List KeyValuePair string, string

| Improve this Doc View Source

QueryToDictionary(Uri)

QueryToDictionary creates a IDictionary with name-values

Declaration
public static IDictionary<string, string> QueryToDictionary(this Uri uri)
Parameters
Type Name Description
Uri uri

Uri of which the query is processed

Returns
Type Description
IDictionary<System.String, System.String>

IDictionary string, string

| Improve this Doc View Source

QueryToKeyValuePairs(Uri)

QueryToKeyValuePairs creates a List with KeyValuePair which have the name-values

Declaration
public static IEnumerable<KeyValuePair<string, string>> QueryToKeyValuePairs(this Uri uri)
Parameters
Type Name Description
Uri uri

Uri of which the query is processed

Returns
Type Description
IEnumerable<KeyValuePair<System.String, System.String>>

List KeyValuePair string, string

| Improve this Doc View Source

QueryToLookup(Uri)

QueryToLookup creates a ILookup with name-values

Declaration
public static ILookup<string, string> QueryToLookup(this Uri uri)
Parameters
Type Name Description
Uri uri

Uri of which the query is processed

Returns
Type Description
System.Linq.ILookup<System.String, System.String>

ILookup string, string

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © Dapplo