Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
로딩중...
검색중...
일치하는것 없음
DreamineWeb.Models.DocumentationProjectInfo 클래스 참조sealed

더 자세히 ...

Public 멤버 함수

string GetDescription (string language)
string GetDoxygenUrl (string language)
string GetGraphUrl (string language)

속성

string Slug = string.Empty [get, set]
string Name = string.Empty [get, set]
string Category = string.Empty [get, set]
string Version = string.Empty [get, set]
string[] TargetFrameworks = [] [get, set]
Dictionary< string, string > Descriptions = [] [get, set]
string? DocumentPageUrl [get, set]
Dictionary< string, string > DoxygenUrls = [] [get, set]
Dictionary< string, string > GraphUrls = [] [get, set]

상세한 설명

문서 허브에 표시할 프로젝트별 문서와 지식 그래프 링크를 나타냅니다.

DocumentationProjectInfo.cs 파일의 11 번째 라인에서 정의되었습니다.

멤버 함수 문서화

◆ GetDescription()

string DreamineWeb.Models.DocumentationProjectInfo.GetDescription ( string language)
inline

요청한 언어의 설명을 반환합니다.

매개변수
languageko 또는 en 언어 코드입니다.
반환값
선택 언어의 설명이며, 없으면 프로젝트 이름입니다.

DocumentationProjectInfo.cs 파일의 127 번째 라인에서 정의되었습니다.

127 =>
128 Descriptions.TryGetValue(language, out string? value) ? value : Name;

다음을 참조함 : Descriptions, Name.

◆ GetDoxygenUrl()

string DreamineWeb.Models.DocumentationProjectInfo.GetDoxygenUrl ( string language)
inline

요청한 언어의 Doxygen URL을 반환합니다.

매개변수
languageko 또는 en 언어 코드입니다.
반환값
Doxygen 문서 URL이며, 없으면 빈 문자열입니다.

DocumentationProjectInfo.cs 파일의 154 번째 라인에서 정의되었습니다.

154 =>
155 DoxygenUrls.TryGetValue(language, out string? value) ? value : string.Empty;

다음을 참조함 : DoxygenUrls.

◆ GetGraphUrl()

string DreamineWeb.Models.DocumentationProjectInfo.GetGraphUrl ( string language)
inline

요청한 언어의 지식 그래프 URL을 반환합니다.

매개변수
languageko 또는 en 언어 코드입니다.
반환값
지식 그래프 URL이며, 없으면 빈 문자열입니다.

DocumentationProjectInfo.cs 파일의 181 번째 라인에서 정의되었습니다.

181 =>
182 GraphUrls.TryGetValue(language, out string? value) ? value : string.Empty;

다음을 참조함 : GraphUrls.

속성 문서화

◆ Category

string DreamineWeb.Models.DocumentationProjectInfo.Category = string.Empty
getset

솔루션 분류 이름을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 41 번째 라인에서 정의되었습니다.

41{ get; set; } = string.Empty;

◆ Descriptions

Dictionary<string, string> DreamineWeb.Models.DocumentationProjectInfo.Descriptions = []
getset

언어별 프로젝트 설명을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 71 번째 라인에서 정의되었습니다.

71{ get; set; } = [];

다음에 의해서 참조됨 : GetDescription().

◆ DocumentPageUrl

string? DreamineWeb.Models.DocumentationProjectInfo.DocumentPageUrl
getset

Dreamine 내부 프로젝트 문서 페이지 URL을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 81 번째 라인에서 정의되었습니다.

81{ get; set; }

◆ DoxygenUrls

Dictionary<string, string> DreamineWeb.Models.DocumentationProjectInfo.DoxygenUrls = []
getset

언어별 Doxygen 문서 URL을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 91 번째 라인에서 정의되었습니다.

91{ get; set; } = [];

다음에 의해서 참조됨 : GetDoxygenUrl().

◆ GraphUrls

Dictionary<string, string> DreamineWeb.Models.DocumentationProjectInfo.GraphUrls = []
getset

언어별 프로젝트 지식 그래프 URL을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 101 번째 라인에서 정의되었습니다.

101{ get; set; } = [];

다음에 의해서 참조됨 : GetGraphUrl().

◆ Name

string DreamineWeb.Models.DocumentationProjectInfo.Name = string.Empty
getset

프로젝트 표시 이름을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 31 번째 라인에서 정의되었습니다.

31{ get; set; } = string.Empty;

다음에 의해서 참조됨 : GetDescription().

◆ Slug

string DreamineWeb.Models.DocumentationProjectInfo.Slug = string.Empty
getset

URL에 사용하는 프로젝트 식별자를 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 21 번째 라인에서 정의되었습니다.

21{ get; set; } = string.Empty;

◆ TargetFrameworks

string [] DreamineWeb.Models.DocumentationProjectInfo.TargetFrameworks = []
getset

대상 프레임워크 목록을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 61 번째 라인에서 정의되었습니다.

61{ get; set; } = [];

◆ Version

string DreamineWeb.Models.DocumentationProjectInfo.Version = string.Empty
getset

프로젝트 버전을 가져오거나 설정합니다.

DocumentationProjectInfo.cs 파일의 51 번째 라인에서 정의되었습니다.

51{ get; set; } = string.Empty;

이 클래스에 대한 문서화 페이지는 다음의 파일로부터 생성되었습니다.: