Families.Web 1.0.0.0
사진, 동영상, 글, 댓글과 반응을 가족끼리만 공유하는 비공개 앨범·타임라인 서비스입니다.
로딩중...
검색중...
일치하는것 없음
FamiliesApp.Services.FamilyOptions 클래스 참조sealed

더 자세히 ...

정적 Public 멤버 함수

static FamilyOptions From (IConfiguration configuration)

속성

string DataPath = "" [get, set]
string SuperAdminPassword = "v1.600000.1oy6GjdnZFCRZpxUY6R4tQ==.1r45CdqBw/2U22r0bF9KwzdIfyCVkkRt/VcoAg19LrQ=" [get, set]
string ResolvedDataPath [get]

상세한 설명

Family Options 기능과 관련 상태를 캡슐화합니다.

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

멤버 함수 문서화

◆ From()

FamilyOptions FamiliesApp.Services.FamilyOptions.From ( IConfiguration configuration)
inlinestatic

From 작업을 수행합니다.

매개변수
configurationconfiguration에 사용할 IConfiguration 값입니다.
반환값
From 작업에서 생성한 FamilyOptions 결과입니다.

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

81 {
82 var opts = new FamilyOptions();
83 configuration.GetSection("Family").Bind(opts);
84 return opts;
85 }

다음에 의해서 참조됨 : FamiliesApp.Program.Main().

이 함수를 호출하는 함수들에 대한 그래프입니다.:

속성 문서화

◆ DataPath

string FamiliesApp.Services.FamilyOptions.DataPath = ""
getset

Data Path 값을 가져오거나 설정합니다.

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

24{ get; set; } = "";

◆ ResolvedDataPath

string FamiliesApp.Services.FamilyOptions.ResolvedDataPath
get

Resolved Data Path 값을 가져옵니다.

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

44 {
45 get
46 {
47 if (string.IsNullOrWhiteSpace(DataPath))
48 return Path.Combine(AppContext.BaseDirectory, "App_Data", "Family");
49
50 return Path.IsPathRooted(DataPath)
51 ? DataPath
52 : Path.GetFullPath(Path.Combine(AppContext.BaseDirectory, DataPath));
53 }
54 }

다음에 의해서 참조됨 : FamiliesApp.Services.JsonFamilyTenantStore.JsonFamilyTenantStore(), FamiliesApp.Services.JsonGlobalSettingsStore.JsonGlobalSettingsStore().

◆ SuperAdminPassword

string FamiliesApp.Services.FamilyOptions.SuperAdminPassword = "v1.600000.1oy6GjdnZFCRZpxUY6R4tQ==.1r45CdqBw/2U22r0bF9KwzdIfyCVkkRt/VcoAg19LrQ="
getset

Super Admin Password 값을 가져오거나 설정합니다.

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

33{ get; set; } = "v1.600000.1oy6GjdnZFCRZpxUY6R4tQ==.1r45CdqBw/2U22r0bF9KwzdIfyCVkkRt/VcoAg19LrQ=";

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