|
Families.Web 1.0.0.0
사진, 동영상, 글, 댓글과 반응을 가족끼리만 공유하는 비공개 앨범·타임라인 서비스입니다.
|

Public 멤버 함수 | |
| Task< ReactionSummary > | GetAsync (string slug, string postId, CancellationToken ct=default) |
| Task | AddReactionAsync (string slug, string postId, string emoji, CancellationToken ct=default) |
| Task | AddCommentAsync (string slug, string postId, CommentEntry comment, CancellationToken ct=default) |
| Task | DeleteCommentAsync (string slug, string postId, string commentId, CancellationToken ct=default) |
I Reaction Store 기능과 관련 상태를 캡슐화합니다.
IReactionStore.cs 파일의 13 번째 라인에서 정의되었습니다.
| Task FamiliesApp.Services.IReactionStore.AddCommentAsync | ( | string | slug, |
| string | postId, | ||
| CommentEntry | comment, | ||
| CancellationToken | ct = default ) |
Comment Async 항목을 추가합니다.
| slug | slug에 사용할 string 값입니다. |
| postId | post Id에 사용할 string 값입니다. |
| comment | comment에 사용할 CommentEntry 값입니다. |
| ct | 취소 요청을 감시하는 토큰입니다. |
Task 결과입니다.FamiliesApp.Services.JsonReactionStore에서 구현되었습니다.
| Task FamiliesApp.Services.IReactionStore.AddReactionAsync | ( | string | slug, |
| string | postId, | ||
| string | emoji, | ||
| CancellationToken | ct = default ) |
Reaction Async 항목을 추가합니다.
| slug | slug에 사용할 string 값입니다. |
| postId | post Id에 사용할 string 값입니다. |
| emoji | emoji에 사용할 string 값입니다. |
| ct | 취소 요청을 감시하는 토큰입니다. |
Task 결과입니다.FamiliesApp.Services.JsonReactionStore에서 구현되었습니다.
| Task FamiliesApp.Services.IReactionStore.DeleteCommentAsync | ( | string | slug, |
| string | postId, | ||
| string | commentId, | ||
| CancellationToken | ct = default ) |
Delete Comment Async 작업을 수행합니다.
| slug | slug에 사용할 string 값입니다. |
| postId | post Id에 사용할 string 값입니다. |
| commentId | comment Id에 사용할 string 값입니다. |
| ct | 취소 요청을 감시하는 토큰입니다. |
Task 결과입니다.FamiliesApp.Services.JsonReactionStore에서 구현되었습니다.
| Task< ReactionSummary > FamiliesApp.Services.IReactionStore.GetAsync | ( | string | slug, |
| string | postId, | ||
| CancellationToken | ct = default ) |
Async 값을 가져옵니다.
| slug | slug에 사용할 string 값입니다. |
| postId | post Id에 사용할 string 값입니다. |
| ct | 취소 요청을 감시하는 토큰입니다. |
Task<ReactionSummary> 결과입니다.FamiliesApp.Services.JsonReactionStore에서 구현되었습니다.