public ServiceMessageProperty()

in TeamCity.ServiceMessages/Write/ServiceMessageProperty.cs [27:33]


        public ServiceMessageProperty([NotNull] string key, [NotNull] string value)
        {
            if (key == null) throw new ArgumentNullException(nameof(key));
            if (value == null) throw new ArgumentNullException(nameof(value));
            Key = key;
            Value = value;
        }