PathString.Addition Operator

 

Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Overload List

Name Description
System_CAPS_puboperatorSystem_CAPS_static Addition(PathString, PathString)

Operator call through to Add

System_CAPS_puboperatorSystem_CAPS_static Addition(PathString, QueryString)

Operator call through to Add

See Also

PathString Structure
Microsoft.Owin Namespace

Return to top

PathString.Addition Operator (PathString, PathString)

Operator call through to Add

Syntax

public static PathString operator +(
    PathString left,
    PathString right
)
public:
static PathString operator +(
    PathString left,
    PathString right
)
static let inline (+)
        left:PathString *
        right:PathString : PathString
Public Shared Operator + (
    left As PathString,
    right As PathString
) As PathString

Parameters

Return Value

Type: Microsoft.Owin.PathString

The PathString combination of both values

Return to top

PathString.Addition Operator (PathString, QueryString)

Operator call through to Add

Syntax

public static string operator +(
    PathString left,
    QueryString right
)
public:
static String^ operator +(
    PathString left,
    QueryString right
)
static let inline (+)
        left:PathString *
        right:QueryString : string
Public Shared Operator + (
    left As PathString,
    right As QueryString
) As String

Parameters

Return Value

Type: System.String

The PathString combination of both values

Return to top