Share via


TaskName Struct

Definition

The name of a durable task.

public readonly struct TaskName : IEquatable<Microsoft.DurableTask.TaskName>
type TaskName = struct
Public Structure TaskName
Implements IEquatable(Of TaskName)
Inheritance
TaskName
Implements

Constructors

TaskName(String)

Initializes a new instance of the TaskName struct.

Properties

Name

Gets the name of the task without the version.

Version

Gets the version of the task.

Methods

Equals(Object)

Gets a value indicating whether to TaskName objects are equal using value semantics.

Equals(TaskName)

Gets a value indicating whether to TaskName objects are equal using value semantics.

GetHashCode()

Calculates a hash code value for the current TaskName instance.

ToString()

Gets the string value of the current TaskName instance.

Operators

Equality(TaskName, TaskName)

Compares two TaskName objects for equality.

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.

Inequality(TaskName, TaskName)

Compares two TaskName objects for inequality.

Applies to