CalendarAggregator.Discovery.GetUniqueTaggables C# (CSharp) 메소드

GetUniqueTaggables() 개인적인 정적인 메소드

private static GetUniqueTaggables ( string id, string type ) : HashSet
id string
type string
리턴 HashSet
        private static HashSet<TaggableSource> GetUniqueTaggables(string id, string type)
        {
            var list = (List<TaggableSource>)BlobStorage.DeserializeObjectFromUri(BlobStorage.MakeAzureBlobUri(id, type + ".taggables.obj", false));

            var uniques = new HashSet<TaggableSource>();

            foreach (var taggable in list)
                uniques.Add(taggable);

            return uniques;
        }