コード例 #1
0
        public async Task <FollowingResult> UnFollowAsync(string access, string tableId, string userId)
        {
            var api    = new TablesApi();
            var result = await api.UnFollowAsync(access, tableId, userId);

            return(result);
        }
コード例 #2
0
        public async Task <TableQuestionsResult> GetQuestionsAsync(string access, string request, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetQuestionsAsync(access, request, autoCache);

            return(result);
        }
コード例 #3
0
        public async Task <TableResult> GetDetailAsync(string access, string tableId, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetDetailAsync(access, tableId, autoCache);

            return(result);
        }
コード例 #4
0
        public async Task <CommentsResult> GetCommentsAsync(string access, string requestUri, bool autoCache = false)
        {
            var api    = new TablesApi();
            var result = await api.GetCommentsAsync(access, requestUri, autoCache);

            return(result);
        }
コード例 #5
0
ファイル: TablesApiTests.cs プロジェクト: RoboWeb/Directus-v8
 public void Init()
 {
     instance = new TablesApi();
 }