[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static NameValueCollection ToNameValueCollection(
this Uri sender,
Encoding enc
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function ToNameValueCollection (
sender As Uri,
enc As Encoding
) As NameValueCollection
Dim sender As Uri
Dim enc As Encoding
Dim returnValue As NameValueCollection
returnValue = sender.ToNameValueCollection(enc)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static NameValueCollection^ ToNameValueCollection(
Uri^ sender,
Encoding^ enc
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member ToNameValueCollection :
sender : Uri *
enc : Encoding -> NameValueCollection
No code example is currently available or this language may not be supported.
[Missing <param name="enc"/> documentation for "M:DevCase.Extensions.UriExtensions.UriExtensions.ToNameValueCollection(System.Uri,System.Text.Encoding)"]
No code example is currently available or this language may not be supported.
Dim uri As New Uri("https://www.youtube.com/watch?v=FtcVlSytJF4")
Dim query As NameValueCollection = ToNameValueCollection(uri, Encoding.UTF8)
Dim id As String = Query("v")
Console.WriteLine(id)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.