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

Class RenderedFolder

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

Namespace: Cephalon.Scaffolding.Generation
Assembly: Cephalon.Scaffolding.dll

Represents one folder produced by scaffold generation.

public sealed class RenderedFolder

objectRenderedFolder

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

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

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

Creates a new rendered folder.

public RenderedFolder(string path, string purpose, string scope, string? projectKey = null, IReadOnlyDictionary<string, string>? metadata = null)

path string

The relative scaffold path of the folder.

purpose string

The descriptive purpose of the folder.

scope string

The scaffold scope that produced the folder.

projectKey string?

The owning rendered project key, if the folder belongs to a project.

metadata IReadOnlyDictionary<string, string>?

Additional metadata associated with the folder.

Gets additional metadata associated with the folder.

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

IReadOnlyDictionary<string, string>

Gets the relative scaffold path of the folder.

public string Path { get; }

string

Gets the owning rendered project key when the folder belongs to a rendered project.

public string? ProjectKey { get; }

string?

Gets the descriptive purpose of the folder.

public string Purpose { get; }

string

Gets the scaffold scope that produced the folder.

public string Scope { get; }

string