public string FormatMessage()

in TeamCity.ServiceMessages/Write/ServiceMessageFormatter.cs [60:65]


        public string FormatMessage([NotNull] string messageName, [NotNull] params ServiceMessageProperty[] properties)
        {
            if (messageName == null) throw new ArgumentNullException(nameof(messageName));
            if (properties == null) throw new ArgumentNullException(nameof(properties));
            return FormatMessage(messageName, properties.ToList());
        }