public void RegisterServerProperty(ServerProperty property)
 {
     this.ServerProperties.Add(property);
 }
        bool ISonarQubeServiceWrapper.TryGetProperties(ConnectionInformation serverConnection, CancellationToken token, out ServerProperty[] properties)
        {
            this.AssertExpectedConnection(serverConnection);

            properties = this.ServerProperties.ToArray();

            return true;
        }