Compartilhar via


TaskName.Implicit Operator

Definition

Overloads

Implicit(TaskName to String)

Implicitly converts a TaskName into a String of the Name property value.

Implicit(String to TaskName)

Implicitly converts a String into a TaskName value.

Implicit(TaskName to String)

Implicitly converts a TaskName into a String of the Name property value.

public static implicit operator string (Microsoft.DurableTask.TaskName value);
static member op_Implicit : Microsoft.DurableTask.TaskName -> string
Public Shared Widening Operator CType (value As TaskName) As String

Parameters

value
TaskName

The TaskName to be converted into a string.

Returns

Applies to

Implicit(String to TaskName)

Implicitly converts a String into a TaskName value.

public static implicit operator Microsoft.DurableTask.TaskName (string value);
static member op_Implicit : string -> Microsoft.DurableTask.TaskName
Public Shared Widening Operator CType (value As String) As TaskName

Parameters

value
String

The string to convert into a TaskName.

Returns

Applies to