QueryString

Overview

QueryString represents a collection of key/value pairs which is used to store parameters from the HTTP path (the tail from symbol "?" to the end).

Location

Properties


Item

 

property Item[key: Object]: String read;

 

String Item[Object key] { get; }

 

ReadOnly Property Item(key As Object) As String

Instance Methods


constructor

 

constructor(query: String)

 

QueryString(String query)

 

Sub New(query As String)

Parameters:

  • query:

ToString

 

method ToString: String

 

String ToString()

 

Function ToString() As String