ข้ามไปยังเนื้อหา

Class CellBoundaryDescriptor

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll

Describes one module-owned cell boundary visible to the active Cephalon runtime.

public sealed class CellBoundaryDescriptor

objectCellBoundaryDescriptor

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

CellBoundaryDescriptor(string, string, string, string, string, string, IReadOnlyList<string>?, IReadOnlyDictionary<string, string>?)

Section titled “ CellBoundaryDescriptor(string, string, string, string, string, string, IReadOnlyList<string>?, IReadOnlyDictionary<string, string>?)”

Creates a cell-boundary descriptor.

public CellBoundaryDescriptor(string id, string sourceModuleId, string displayName, string description, string blastRadius, string routingStrategy, IReadOnlyList<string>? moduleIds = null, IReadOnlyDictionary<string, string>? metadata = null)

id string

The stable cell identifier.

sourceModuleId string

The Cephalon module that owns this cell boundary.

displayName string

The operator-facing cell name.

description string

The human-readable description of the cell boundary.

blastRadius string

The operator-facing blast-radius posture for this cell.

routingStrategy string

The operator-facing routing strategy applied to this cell.

moduleIds IReadOnlyList<string>?

The module identifiers that belong to this cell boundary.

metadata IReadOnlyDictionary<string, string>?

Optional operator-facing metadata.

Gets the operator-facing blast-radius posture for this cell.

public string BlastRadius { get; }

string

Gets the human-readable description of the cell boundary.

public string Description { get; }

string

Gets the operator-facing cell name.

public string DisplayName { get; }

string

Gets the stable cell identifier.

public string Id { get; }

string

Gets optional operator-facing metadata for this cell boundary.

public IReadOnlyDictionary<string, string> Metadata { get; }

IReadOnlyDictionary<string, string>

Gets the module identifiers that belong to this cell boundary.

public IReadOnlyList<string> ModuleIds { get; }

IReadOnlyList<string>

Gets the operator-facing routing strategy for this cell.

public string RoutingStrategy { get; }

string

Gets the module that owns this cell boundary.

public string SourceModuleId { get; }

string