PathString.Add Method
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
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. |
See Also
PathString Structure
Microsoft.Owin Namespace
Return to top
PathString.Add Method (PathString)
Adds two PathString instances into a combined PathString value.
Syntax
public PathString Add(
PathString other
)
public:
PathString Add(
PathString other
)
member Add :
other:PathString -> PathString
Public Function Add (
other As PathString
) As PathString
Parameters
- other
Type: Microsoft.Owin.PathString
Return Value
Type: Microsoft.Owin.PathString
The combined PathString value
Return to top
PathString.Add Method (QueryString)
Combines a PathString and QueryString into the joined URI formatted string value.
Syntax
public string Add(
QueryString other
)
public:
String^ Add(
QueryString other
)
member Add :
other:QueryString -> string
Public Function Add (
other As QueryString
) As String
Parameters
- other
Type: Microsoft.Owin.QueryString
Return Value
Type: System.String
The joined URI formatted string value
Return to top