[C#/COMMON/.NET5] IAsyncEnumerable 인터페이스 : 넥서스 저장소(Nexus Repository)에서 자산(Asset) 정보 구하기
■ IAsyncEnumerable<T> 인터페이스를 사용해 넥서스 저장소(Nexus Repository)에서 자산(Asset) 정보를 구하는 방법을 보여준다. ▶ Checksum.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
using Newtonsoft.Json; namespace TestProject { /// <summary> /// 체크썸 /// </summary> public class Checksum { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region MD5 - MD5 /// <summary> /// MD5 /// </summary> [JsonProperty("md5")] public string MD5 { get; set; } #endregion #region SHA1 - SHA1 /// <summary> /// SHA1 /// </summary> [JsonProperty("sha1")] public string SHA1 { get; set; } #endregion #region SHA256 - SHA256 /// <summary> /// SHA256 /// </summary> [JsonProperty("sha256")] public string SHA256 { get; set; } #endregion #region SHA512 - SHA512 /// <summary> /// SHA512 /// </summary> [JsonProperty("sha512")] public string SHA512 { get; set; } #endregion } } |
▶ Item.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
using Newtonsoft.Json; namespace TestProject { /// <summary> /// 항목 /// </summary> public class Item { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region ID - ID /// <summary> /// ID /// </summary> [JsonProperty("id")] public string ID { get; set; } #endregion #region 저장소 - Repository /// <summary> /// 저장소 /// </summary> [JsonProperty("repository")] public string Repository { get; set; } #endregion #region 경로 - Path /// <summary> /// 경로 /// </summary> [JsonProperty("path")] public string Path { get; set; } #endregion #region 포맷 - Format /// <summary> /// 포맷 /// </summary> [JsonProperty("format")] public string Format { get; set; } #endregion #region 다운로드 URL - DownloadURL /// <summary> /// 다운로드 URL /// </summary> [JsonProperty("downloadUrl")] public string DownloadURL { get; set; } #endregion #region 체크썸 - Checksum /// <summary> /// 체크썸 /// </summary> [JsonProperty("checksum")] public Checksum Checksum { get; set; } #endregion } } |
▶ AssetData.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
using System.Collections.Generic; using Newtonsoft.Json; namespace TestProject { /// <summary> /// 자산 데이터 /// </summary> public class AssetData { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 항목 리스트 - ItemList /// <summary> /// 항목 리스트 /// </summary> [JsonProperty("items")] public IList<Item> ItemList { get; set; } #endregion #region 연속 토큰 - ContinuationToken /// <summary> /// 연속 토큰 /// </summary> [JsonProperty("continuationToken")] public string ContinuationToken { get; set; } #endregion } } |
▶