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

Class TechnologyRuntimeEntry

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

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

Describes one runtime-visible entry inside a technology surface.

public sealed class TechnologyRuntimeEntry

objectTechnologyRuntimeEntry

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

TechnologyRuntimeEntry(string, string, string, IReadOnlyDictionary<string, string>?)

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

Creates a new technology runtime entry.

[JsonConstructor]
public TechnologyRuntimeEntry(string id, string displayName, string description, IReadOnlyDictionary<string, string>? metadata = null)

id string

The stable entry identifier.

displayName string

The operator-facing display name.

description string

A human-readable description of the entry.

metadata IReadOnlyDictionary<string, string>?

Additional metadata associated with the entry.

Gets the human-readable description of the entry.

public string Description { get; }

string

Gets the operator-facing display name for the entry.

public string DisplayName { get; }

string

Gets the stable identifier for the entry.

public string Id { get; }

string

Gets additional metadata projected for the entry.

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

IReadOnlyDictionary<string, string>