using System; using System.Collections.Generic; namespace GitHub.DistributedTask.Logging { internal interface ISecret { /// /// Returns one item (start, length) for each match found in the input string. /// IEnumerable GetPositions(String input); } }