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
Source:
PathString.cs

Adds two PathString instances into a combined PathString value.

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

Parameters

other
PathString

Returns

The combined PathString value

Applies to

Add(QueryString)

Source:
PathString.cs
Source:
PathString.cs

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

public:
 System::String ^ Add(Microsoft::AspNetCore::Http::QueryString other);
public string Add (Microsoft.AspNetCore.Http.QueryString other);
member this.Add : Microsoft.AspNetCore.Http.QueryString -> string
Public Function Add (other As QueryString) As String

Parameters

other
QueryString

Returns

The joined URI formatted string value

Applies to