namespace LibGit2Sharp { /// /// Collection of parameters controlling Fetch behavior. /// public sealed class FetchOptions : FetchOptionsBase { /// /// Specifies the tag-following behavior of the fetch operation. /// /// If not set, the fetch operation will follow the default behavior for the /// based on the remote's configuration. /// /// If neither this property nor the remote `tagopt` configuration is set, /// this will default to (i.e. tags that point to objects /// retrieved during this fetch will be retrieved as well). /// public TagFetchMode? TagFetchMode { get; set; } } }