LuciadCPillar C# 2025.0.09
Luciad.Net.UriQueryParameter Class Reference

A class representing an URI query parameter. More...

Inheritance diagram for Luciad.Net.UriQueryParameter:

Public Member Functions

 UriQueryParameter (string key, string value)
 Creates an URI query parameter with the given key and value. More...
 
void Dispose ()
 
override bool Equals (object other)
 
override int GetHashCode ()
 
override string ToString ()
 

Properties

string Key [get]
 The key of this URI query parameter. More...
 
string Value [get]
 The value of this URI query parameter. More...
 

Detailed Description

A class representing an URI query parameter.

UriQueryParameter instances are immutable.

Since
2023.0

Constructor & Destructor Documentation

◆ UriQueryParameter()

Luciad.Net.UriQueryParameter.UriQueryParameter ( string  key,
string  value 
)
inline

Creates an URI query parameter with the given key and value.

Parameters
keythe query parameter key.
valuethe query parameter value.

Member Function Documentation

◆ Dispose()

void Luciad.Net.UriQueryParameter.Dispose ( )
inline

◆ Equals()

override bool Luciad.Net.UriQueryParameter.Equals ( object  other)
inline

◆ GetHashCode()

override int Luciad.Net.UriQueryParameter.GetHashCode ( )
inline

◆ ToString()

override string Luciad.Net.UriQueryParameter.ToString ( )
inline

Property Documentation

◆ Key

string Luciad.Net.UriQueryParameter.Key
get

The key of this URI query parameter.

[get]

Returns the key of this URI query parameter.

◆ Value

string Luciad.Net.UriQueryParameter.Value
get

The value of this URI query parameter.

[get]

Returns the value of this URI query parameter.