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 -> string
Public Shared Widening Operator CType (path As PathString) As String
Parameters
- 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.PathString
Public Shared Widening Operator CType (s As String) As PathString
Parameters
- s
- String