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

  • Reference:
    • RemObjects.InternetPack.dll  .NET, .NET Core 5.0, .NET Standard 2.0
    • RemObjects.InternetPack.fx  Island
    • libRemObjects.InternetPack.fx  Toffee
  • Namespace: RemObjects.InternetPack.Http

constructor

constructor(query: String)
QueryString(String query)

Parameters:

  • query:

Count  virtual

property Count: Int32 read;
var Count: Int32 { get{} }
ReadOnly Property Count() As Int32

description  override Toffee

func description() -> NSString

Item  virtual

property Item[key: Object]: String read;
String Item[Object key] { get; }
// .NET, .NET Core 5.0, .NET Standard 2.0, Island
subscript Item(_ key: Object) -> String { get{} }
// Toffee
subscript Item(_ key: NSObject) -> String { get{} }
ReadOnly Property Item(key As Object) As String

Keys  virtual

property Keys: IEnumerable<String> read;
IEnumerable<String> Keys { get; }
// .NET, .NET Core 5.0, .NET Standard 2.0, Island
var Keys: IEnumerable<String> { get{} }
// Toffee
var Keys: INSFastEnumeration<String> { get{} }
ReadOnly Property Keys() As IEnumerable<String>

ToString  virtual

method ToString: PlatformString
PlatformString ToString()
func ToString() -> String
Function ToString() As PlatformString

Count  virtual

property Count: Int32 read;
var Count: Int32 { get{} }
ReadOnly Property Count() As Int32

Item  virtual

property Item[key: Object]: String read;
String Item[Object key] { get; }
// .NET, .NET Core 5.0, .NET Standard 2.0, Island
subscript Item(_ key: Object) -> String { get{} }
// Toffee
subscript Item(_ key: NSObject) -> String { get{} }
ReadOnly Property Item(key As Object) As String

Keys  virtual

property Keys: IEnumerable<String> read;
IEnumerable<String> Keys { get; }
// .NET, .NET Core 5.0, .NET Standard 2.0, Island
var Keys: IEnumerable<String> { get{} }
// Toffee
var Keys: INSFastEnumeration<String> { get{} }
ReadOnly Property Keys() As IEnumerable<String>

constructor

constructor(query: String)
QueryString(String query)

Parameters:

  • query:

description  override Toffee

func description() -> NSString

ToString  virtual

method ToString: PlatformString
PlatformString ToString()
func ToString() -> String
Function ToString() As PlatformString