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

Class EdgeNodeDescriptor

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

Namespace: Cephalon.Edge.Services
Assembly: Cephalon.Edge.dll

Describes an edge node that can be surfaced through the edge runtime pack.

public sealed class EdgeNodeDescriptor

objectEdgeNodeDescriptor

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

EdgeNodeDescriptor(string, string, string, IReadOnlyList<string>?)

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

Creates a new edge node descriptor.

public EdgeNodeDescriptor(string id, string displayName, string description, IReadOnlyList<string>? tags = null)

id string

The stable node identifier.

displayName string

The operator-facing node name.

description string

The human-readable description of the node.

tags IReadOnlyList<string>?

Optional tags that classify the node.

Gets the human-readable description of the node.

public string Description { get; }

string

Gets the operator-facing display name for the node.

public string DisplayName { get; }

string

Gets the stable node identifier.

public string Id { get; }

string

Gets the normalized tag set associated with the node.

public IReadOnlyList<string> Tags { get; }

IReadOnlyList<string>