PathString.Implicit 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
| Implicit(PathString to String) | Implicitly calls ToString(). | 
| Implicit(String to PathString) | Implicitly creates a new PathString from the given string. | 
Implicit(PathString to String)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
Implicitly calls ToString().
public:
 static operator System::String ^(Microsoft::AspNetCore::Http::PathString path);public static implicit operator string(Microsoft.AspNetCore.Http.PathString path);static member op_Implicit : Microsoft.AspNetCore.Http.PathString -> stringPublic Shared Widening Operator CType (path As PathString) As StringParameters
- path
- PathString
Returns
Applies to
Implicit(String to PathString)
- Source:
- PathString.cs
- Source:
- PathString.cs
- Source:
- PathString.cs
Implicitly creates a new PathString from the given string.
public:
 static operator Microsoft::AspNetCore::Http::PathString(System::String ^ s);public static implicit operator Microsoft.AspNetCore.Http.PathString(string s);public static implicit operator Microsoft.AspNetCore.Http.PathString(string? s);static member op_Implicit : string -> Microsoft.AspNetCore.Http.PathStringPublic Shared Widening Operator CType (s As String) As PathStringParameters
- s
- String