Beispiel #1
0
        /// <inheritdoc />
        public IFeatureRegistration AddFeature <TImplementation>() where TImplementation : class, IFullNodeFeature
        {
            if (this.featureRegistrations.Any(f => f.FeatureType == typeof(TImplementation)))
            {
                throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "Feature of type {0} has already been registered.", typeof(TImplementation).FullName));
            }

            var featureRegistration = new FeatureRegistration <TImplementation>();

            this.featureRegistrations.Add(featureRegistration);

            return(featureRegistration);
        }