Beispiel #1
0
 private TagPickingOptions(TagPickingMode mode, int tagCount, bool includeOrphanedTags)
 {
     LatestCount         = tagCount;
     Mode                = mode;
     IncludeOrphanedTags = includeOrphanedTags;
 }
Beispiel #2
0
 public static ITagPickingOptions Set(TagPickingMode mode, int tagCount, bool includeOrphanedTags)
 {
     return(new TagPickingOptions(mode, tagCount, includeOrphanedTags));
 }