EntityId Struct

Definition

A unique identifier for an entity, consisting of entity name and entity key.

public struct EntityId : IComparable, IEquatable<Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId>
type EntityId = struct
Public Structure EntityId
Implements IComparable, IEquatable(Of EntityId)
Inheritance
EntityId
Implements

Constructors

EntityId(String, String)

Create an entity id for an entity.

Properties

EntityKey

The entity key. Uniquely identifies an entity among all entities of the same name.

EntityName

The name for this class of entities.

Methods

CompareTo(Object)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

Equals(EntityId)

Indicates whether the current object is equal to another object of the same type.

Equals(Object)

Indicates whether this instance and a specified object are equal.

GetHashCode()

Returns the hash code for this instance.

ToString()

Returns the fully qualified type name of this instance.

Applies to