PathString.Implicit Operator

Definition

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

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

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

Returns

Applies to