IWwwFormUrlDecoderEntry
IWwwFormUrlDecoderEntry
IWwwFormUrlDecoderEntry
IWwwFormUrlDecoderEntry
Interface
Definition
Represents a name-value pair in a URL query string.
public : interface IWwwFormUrlDecoderEntrypublic interface IWwwFormUrlDecoderEntryPublic Interface IWwwFormUrlDecoderEntry// You can use this interface in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
The WwwFormUrlDecoder class represents a URL query string as a sequence of name-value pairs. Each name-value pair is represented by an IWwwFormUrlDecoderEntry object.
Properties
Name Name Name Name
Represents the name of a parameter in a URL query string.
public : PlatForm::String Name { get; }public string Name { get; }Public ReadOnly Property Name As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The name of a query string parameter. The Value property represents the corresponding value.
Value Value Value Value
Represents a named value in a URL query string.
public : PlatForm::String Value { get; }public string Value { get; }Public ReadOnly Property Value As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The value of a query parameter that corresponds with the Name property.