PathString.Add Method

Definition

Overloads

Add(PathString)

Adds two PathString instances into a combined PathString value.

Add(QueryString)

Combines a PathString and QueryString into the joined URI formatted string value.

Add(PathString)

Source:
PathString.cs

Adds two PathString instances into a combined PathString value.

public Microsoft.Owin.PathString Add (Microsoft.Owin.PathString other);
member this.Add : Microsoft.Owin.PathString -> Microsoft.Owin.PathString
Public Function Add (other As PathString) As PathString

Parameters

other
PathString

Returns

The combined PathString value

Applies to

Add(QueryString)

Source:
PathString.cs

Combines a PathString and QueryString into the joined URI formatted string value.

public string Add (Microsoft.Owin.QueryString other);
member this.Add : Microsoft.Owin.QueryString -> string
Public Function Add (other As QueryString) As String

Parameters

other
QueryString

Returns

The joined URI formatted string value

Applies to