PathString.Addition Operator  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Addition(String, PathString) | |
| Addition(PathString, String) | |
| Addition(PathString, PathString) | Operator call through to Add | 
| Addition(PathString, QueryString) | Operator call through to Add | 
Addition(String, PathString)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
public:
 static System::String ^ operator +(System::String ^ left, Microsoft::AspNetCore::Http::PathString right);public static string operator +(string left, Microsoft.AspNetCore.Http.PathString right);static member ( + ) : string * Microsoft.AspNetCore.Http.PathString -> stringPublic Shared Operator + (left As String, right As PathString) As StringParameters
- left
- String
The left parameter
- right
- PathString
The right parameter
Returns
The ToString combination of both values
Applies to
Addition(PathString, String)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
public:
 static System::String ^ operator +(Microsoft::AspNetCore::Http::PathString left, System::String ^ right);public static string operator +(Microsoft.AspNetCore.Http.PathString left, string right);public static string operator +(Microsoft.AspNetCore.Http.PathString left, string? right);static member ( + ) : Microsoft.AspNetCore.Http.PathString * string -> stringPublic Shared Operator + (left As PathString, right As String) As StringParameters
- left
- PathString
The left parameter
- right
- String
The right parameter
Returns
The ToString combination of both values
Applies to
Addition(PathString, PathString)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
Operator call through to Add
public:
 static Microsoft::AspNetCore::Http::PathString operator +(Microsoft::AspNetCore::Http::PathString left, Microsoft::AspNetCore::Http::PathString right);public static Microsoft.AspNetCore.Http.PathString operator +(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.PathString right);static member ( + ) : Microsoft.AspNetCore.Http.PathString * Microsoft.AspNetCore.Http.PathString -> Microsoft.AspNetCore.Http.PathStringPublic Shared Operator + (left As PathString, right As PathString) As PathStringParameters
- left
- PathString
The left parameter
- right
- PathString
The right parameter
Returns
The PathString combination of both values
Applies to
Addition(PathString, QueryString)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
Operator call through to Add
public:
 static System::String ^ operator +(Microsoft::AspNetCore::Http::PathString left, Microsoft::AspNetCore::Http::QueryString right);public static string operator +(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.QueryString right);static member ( + ) : Microsoft.AspNetCore.Http.PathString * Microsoft.AspNetCore.Http.QueryString -> stringPublic Shared Operator + (left As PathString, right As QueryString) As StringParameters
- left
- PathString
The left parameter
- right
- QueryString
The right parameter
Returns
The PathString combination of both values