PathString.Addition Operator (PathString, QueryString)
Operator call through to Add.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Shared Operator + ( _
left As PathString, _
right As QueryString _
) As String
'Usage
Dim left As PathString
Dim right As QueryString
Dim returnValue As String
returnValue = (left + right)
public static string operator +(
PathString left,
QueryString right
)
public:
static String^ operator +(
PathString left,
QueryString right
)
static let inline(+)
left:PathString *
right:QueryString : string
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: Microsoft.Owin.PathString
The left parameter.
- right
Type: Microsoft.Owin.QueryString
The right parameter.
Return Value
Type: System.String
The PathString combination of both values.