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

Class SuiteBlueprint

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

Namespace: Cephalon.Abstractions.AppModel
Assembly: Cephalon.Abstractions.dll

Describes a suite-level Cephalon blueprint composed from existing app-level contracts.

public sealed class SuiteBlueprint

objectSuiteBlueprint

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

SuiteBlueprint(string, string, string, SuiteScaffoldPlan, IReadOnlyDictionary<string, string>?)

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

Creates a suite blueprint.

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

id string

The stable suite-blueprint identifier.

displayName string

The human-readable suite-blueprint name.

description string

The suite-blueprint description.

scaffold SuiteScaffoldPlan

The suite-scaffold plan associated with the suite blueprint.

metadata IReadOnlyDictionary<string, string>?

Optional suite-blueprint metadata.

Gets the suite-blueprint description.

public string Description { get; }

string

Gets the human-readable suite-blueprint name.

public string DisplayName { get; }

string

Gets the stable suite-blueprint identifier.

public string Id { get; }

string

Gets additional suite-blueprint metadata.

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

IReadOnlyDictionary<string, string>

Gets the suite-scaffold plan associated with the suite blueprint.

public SuiteScaffoldPlan Scaffold { get; }

SuiteScaffoldPlan