GlobalObject.decodeURIComponent(Object) Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Decodes the specified Uniform Resource Identifier (URI).
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
 static System::String ^ decodeURIComponent(System::Object ^ encodedURI);
	[Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Global_decodeURIComponent)]
public static string decodeURIComponent(object encodedURI);
	[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Global_decodeURIComponent)]
public static string decodeURIComponent(object encodedURI);
	[<Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Global_decodeURIComponent)>]
static member decodeURIComponent : obj -> string
	[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Global_decodeURIComponent)>]
static member decodeURIComponent : obj -> string
	Public Shared Function decodeURIComponent (encodedURI As Object) As String
	Parameters
- encodedURI
 - Object
 
The URI to decode.
Returns
The decoded version of encodedURI.
- Attributes