본문 바로가기
프로그래밍/C#

구글 RealTimeDataBase GetValue 개수와 크기

by neive 2023. 2. 24.
728x90
            .GetValueAsync().ContinueWith(task =>
            {
                if (task.IsFaulted)
                {
                    // 오류 처리
                }
                else if (task.IsCompleted)
                {
                    DataSnapshot snapshot = task.Result;
                    // 데이터 처리
                    var cnt = snapshot.Children.Count();
                    var size = snapshot.GetRawJsonValue().Length;
                }
            });

 

 

이런 방식으로 Child 의 개수와 사이즈를 알 수 있다

728x90

댓글